1
0

Cargo.toml 816 B

12345678910111213141516171819202122232425262728
  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. test-sbf = []
  15. [dependencies]
  16. pinocchio = { version = "0.7", git = "https://github.com/febo/pinocchio.git", branch = "febo/close-unstable" }
  17. pinocchio-log = { version = "0.3", git = "https://github.com/febo/pinocchio.git", branch = "febo/close-unstable" }
  18. spl-token-interface = { version = "^0", path = "../interface" }
  19. [dev-dependencies]
  20. assert_matches = "1.5.0"
  21. solana-program-test = "2.1"
  22. solana-sdk = "2.1"
  23. spl-token = { version="^4", features=["no-entrypoint"] }
  24. test-case = "3.3.1"