Cargo.toml 872 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "anchor-spl"
  3. version = "0.23.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. rust-version = "1.56"
  6. edition = "2021"
  7. license = "Apache-2.0"
  8. description = "CPI clients for SPL programs"
  9. [features]
  10. default = ["mint", "token", "associated_token"]
  11. mint = []
  12. token = ["spl-token"]
  13. associated_token = ["spl-associated-token-account"]
  14. governance = []
  15. shmem = []
  16. devnet = []
  17. dex = ["serum_dex"]
  18. [dependencies]
  19. anchor-lang = { path = "../lang", version = "0.23.0", features = ["derive"] }
  20. serum_dex = { git = "https://github.com/project-serum/serum-dex", rev = "1be91f2", version = "0.4.0", features = ["no-entrypoint"], optional = true }
  21. solana-program = "~1.9.13"
  22. spl-token = { version = "3.1.1", features = ["no-entrypoint"], optional = true }
  23. spl-associated-token-account = { version = "1.0.3", features = ["no-entrypoint"], optional = true }