| 123456789101112131415161718192021222324 |
- [package]
- name = "pinocchio"
- description = "Create Solana programs with no dependencies attached"
- version = "0.9.0"
- edition = { workspace = true }
- license = { workspace = true }
- readme = "./README.md"
- repository = { workspace = true }
- rust-version = { workspace = true }
- [lib]
- crate-type = ["rlib"]
- [lints.rust]
- unexpected_cfgs = { level = "warn", check-cfg = [
- 'cfg(target_os, values("solana"))',
- 'cfg(target_feature, values("static-syscalls"))',
- ] }
- [features]
- std = []
- [dev-dependencies]
- five8_const = { workspace = true }
|