Cargo.toml 883 B

1234567891011121314151617181920212223242526272829
  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. num-traits = "0.2"
  21. solana-program-test = "2.1"
  22. solana-sdk = "2.1"
  23. spl-token = { version="^4", features=["no-entrypoint"] }
  24. spl-token-2022 = { version="^7", features=["no-entrypoint"] }
  25. test-case = "3.3.1"