Cargo.toml 344 B

12345678910111213141516171819
  1. [package]
  2. name = "repository-layout-program"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. borsh = "0.9.3"
  7. borsh-derive = "0.9.1"
  8. solana-program = "2.0"
  9. [lib]
  10. crate-type = ["cdylib", "lib"]
  11. [features]
  12. custom-heap = []
  13. custom-panic = []
  14. [lints.rust]
  15. unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_os, values("solana"))'] }