Cargo.toml 364 B

12345678910111213141516171819
  1. [package]
  2. name = "hello-solana-program-pinocchio"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. pinocchio.workspace = true
  7. pinocchio-log.workspace = true
  8. [lib]
  9. crate-type = ["cdylib", "rlib"]
  10. [features]
  11. anchor-debug = []
  12. custom-heap = []
  13. custom-panic = []
  14. [lints.rust]
  15. unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_os, values("solana"))'] }