Cargo.toml 428 B

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