Cargo.toml 802 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "pinocchio-token-program"
  3. version = "0.0.0"
  4. description = "A pinocchio-based Token (aka 'p-token') program"
  5. authors = { workspace = true}
  6. repository = { workspace = true}
  7. license = { workspace = true}
  8. edition = { workspace = true}
  9. readme = "./README.md"
  10. [lib]
  11. crate-type = ["cdylib"]
  12. [features]
  13. logging = []
  14. [dependencies]
  15. pinocchio = { version = "0.7", git = "https://github.com/febo/pinocchio.git", branch = "febo/close-unstable" }
  16. pinocchio-log = { version = "0.3", git = "https://github.com/febo/pinocchio.git", branch = "febo/close-unstable" }
  17. spl-token-interface = { version = "^0", path = "../interface" }
  18. [dev-dependencies]
  19. assert_matches = "1.5.0"
  20. solana-program-test = "2.1"
  21. solana-sdk = "2.1"
  22. spl-token = { version="^4", features=["no-entrypoint"] }
  23. test-case = "3.3.1"