Cargo.toml 779 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "package-metadata"
  3. version = "4.0.0-alpha.0"
  4. description = "Solana SBF test program with tools version in package metadata"
  5. authors = ["Anza Maintainers <maintainers@anza.xyz>"]
  6. repository = "https://github.com/anza-xyz/agave"
  7. license = "Apache-2.0"
  8. homepage = "https://anza.xyz"
  9. edition = "2021"
  10. publish = false
  11. [package.metadata.solana]
  12. tools-version = "v1.52"
  13. program-id = "MyProgram1111111111111111111111111111111111"
  14. [dependencies]
  15. solana-account-info = "=2.3.0"
  16. solana-package-metadata = "=2.2.1"
  17. solana-program-entrypoint = "=2.3.0"
  18. solana-program-error = "=2.2.2"
  19. solana-pubkey = "=2.4.0"
  20. [lib]
  21. crate-type = ["cdylib"]
  22. [lints.rust.unexpected_cfgs]
  23. level = "warn"
  24. check-cfg = [
  25. 'cfg(feature, values("custom-panic", "custom-heap"))'
  26. ]
  27. [workspace]