Cargo.toml 381 B

1234567891011121314151617181920
  1. [package]
  2. name = "checking-accounts-native-program"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. solana-program.workspace = true
  7. solana-system-interface.workspace = true
  8. [lib]
  9. crate-type = ["cdylib", "lib"]
  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"))'] }