Cargo.toml 642 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "token-program"
  3. version = "0.0.0"
  4. edition = "2021"
  5. readme = "./README.md"
  6. license-file = "../LICENSE"
  7. publish = false
  8. [package.metadata.solana]
  9. program-id = "TokenLight111111111111111111111111111111111"
  10. [lib]
  11. crate-type = ["cdylib", "lib"]
  12. [features]
  13. logging = []
  14. test-sbf = []
  15. [dependencies]
  16. bytemuck = { version="1.18.0", features=["derive"] }
  17. pinocchio = "0.6"
  18. pinocchio-pubkey = "0.2"
  19. token-interface = { version = "^0", path = "../interface" }
  20. [dev-dependencies]
  21. assert_matches = "1.5.0"
  22. solana-program-test = "~1.18"
  23. solana-sdk = "~1.18"
  24. spl-token = { version="^4", features=["no-entrypoint"] }
  25. test-case = "3.3.1"