Cargo.toml 538 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "pinocchio"
  3. description = "Create Solana programs with no dependencies attached"
  4. version = "0.9.0"
  5. edition = { workspace = true }
  6. license = { workspace = true }
  7. readme = "./README.md"
  8. repository = { workspace = true }
  9. rust-version = { workspace = true }
  10. [lib]
  11. crate-type = ["rlib"]
  12. [lints.rust]
  13. unexpected_cfgs = { level = "warn", check-cfg = [
  14. 'cfg(target_os, values("solana"))',
  15. 'cfg(target_feature, values("static-syscalls"))',
  16. ] }
  17. [features]
  18. std = []
  19. [dev-dependencies]
  20. five8_const = { workspace = true }