anchor/spl/Cargo.toml

25 lines
848 B
TOML
Raw Normal View History

2021-01-15 19:16:17 -08:00
[package]
name = "anchor-spl"
2022-02-28 08:35:59 -08:00
version = "0.22.1"
2021-01-31 06:32:30 -08:00
authors = ["Serum Foundation <foundation@projectserum.com>"]
2021-01-15 19:16:17 -08:00
edition = "2018"
2021-01-31 06:32:30 -08:00
license = "Apache-2.0"
description = "CPI clients for SPL programs"
2021-01-15 19:16:17 -08:00
[features]
default = ["mint", "token", "associated_token"]
mint = []
2022-01-30 09:35:00 -08:00
token = ["spl-token"]
associated_token = ["spl-associated-token-account"]
governance = []
shmem = []
devnet = []
dex = ["serum_dex"]
2021-01-15 19:16:17 -08:00
[dependencies]
2022-02-28 08:35:59 -08:00
anchor-lang = { path = "../lang", version = "0.22.1", features = ["derive"] }
serum_dex = { git = "https://github.com/project-serum/serum-dex", rev = "1be91f2", version = "0.4.0", features = ["no-entrypoint"], optional = true }
2021-12-13 08:23:36 -08:00
solana-program = "1.8.5"
2022-01-30 09:35:00 -08:00
spl-token = { version = "3.1.1", features = ["no-entrypoint"], optional = true }
spl-associated-token-account = { version = "1.0.3", features = ["no-entrypoint"], optional = true }