Cargo.toml 752 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "anchor-spl"
  3. version = "0.18.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 = []
  12. associated_token = []
  13. governance = []
  14. shmem = []
  15. devnet = []
  16. [dependencies]
  17. anchor-lang = { path = "../lang", version = "0.18.0", features = ["derive"] }
  18. serum_dex = { git = "https://github.com/project-serum/serum-dex", rev = "1be91f2", version = "0.4.0", features = ["no-entrypoint"], optional = true}
  19. solana-program = "1.8.0"
  20. spl-token = { version = "3.1.1", features = ["no-entrypoint"] }
  21. spl-associated-token-account = { version = "1.0.3", features = ["no-entrypoint"] }