[package] name = "anchor-spl" version = "0.26.0" authors = ["Serum Foundation "] rust-version = "1.59" edition = "2021" license = "Apache-2.0" description = "CPI clients for SPL programs" [features] default = ["mint", "token", "associated_token"] mint = [] token = ["spl-token"] associated_token = ["spl-associated-token-account"] governance = [] shmem = [] stake = ["borsh"] devnet = [] metadata = ["mpl-token-metadata"] dex = ["serum_dex"] [dependencies] anchor-lang = {git = "https://github.com/blockworks-foundation/anchor.git", branch = "application-fee-tests", features = ["derive"] } borsh = { version = "^0.9", optional = true } serum_dex = { git = "https://github.com/openbook-dex/program/", rev = "1be91f2", version = "0.4.0", features = ["no-entrypoint"], optional = true } solana-program = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"} spl-token = { version = "3.5.0", features = ["no-entrypoint"], optional = true } spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"], optional = true } mpl-token-metadata = { version = "1.4.3", optional = true, features = ["no-entrypoint"] }