Cargo.toml 848 B

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