Cargo.toml 327 B

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