Cargo.toml 401 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "counter-mpl-stack"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. crate-type = ["cdylib", "lib"]
  7. [features]
  8. no-entrypoint = []
  9. cpi = ["no-entrypoint"]
  10. default = []
  11. anchor-debug = []
  12. custom-heap = []
  13. custom-panic = []
  14. [dependencies]
  15. borsh = "0.9"
  16. shank = "0.0.8"
  17. solana-program = "2.1"
  18. [lints.rust]
  19. unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_os, values("solana"))'] }