[package]
edition = "2021"
name = "token-acl-client"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust library for the Token ACL program with generated client code."
readme = false
license = "MIT"
repository = "https://github.com/solana-foundation/token-acl"
[features]
default = []
fetch = ["dep:solana-client"]
serde = []
[lib]
name = "token_acl_client"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
doctest = false
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "create_config"
path = "tests/create_config.rs"
[[test]]
name = "freeze_permissionless"
path = "tests/freeze_permissionless.rs"
[[test]]
name = "program_test"
path = "tests/program_test.rs"
[[test]]
name = "thaw_permissionless"
path = "tests/thaw_permissionless.rs"
[dependencies.borsh]
version = "1.0.0"
[dependencies.num-derive]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.solana-account]
version = "3.1.0"
[dependencies.solana-account-info]
version = "3.1.0"
[dependencies.solana-client]
version = "3.1.8"
optional = true
[dependencies.solana-cpi]
version = "3.1.0"
[dependencies.solana-instruction]
version = "3.1.0"
features = ["std"]
[dependencies.solana-program-error]
version = "3.0.0"
[dependencies.solana-program-option]
version = "3.0.0"
[dependencies.solana-program-pack]
version = "3.0.0"
[dependencies.solana-pubkey]
version = "4.0.0"
features = [
"curve25519",
"borsh",
]
[dependencies.solana-system-interface]
version = "3.0.0"
features = ["bincode"]
[dependencies.spl-associated-token-account-interface]
version = "2.0.0"
[dependencies.spl-tlv-account-resolution]
version = "0.11.1"
[dependencies.spl-token-2022-interface]
version = "2.0.0"
[dependencies.spl-token-metadata-interface]
version = "0.8.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.token-acl-interface]
version = "0.2.0"
[dev-dependencies.litesvm]
version = "0.9.0"
[dev-dependencies.solana-compute-budget-interface]
version = "3.0.0"
[dev-dependencies.solana-instruction]
version = "3.1.0"
features = ["std"]
[dev-dependencies.solana-program-runtime]
version = "3.1.8"
[dev-dependencies.solana-sdk]
version = "3.0.0"
[dev-dependencies.tokio]
version = "^1.20"
features = [
"rt-multi-thread",
"macros",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("frozen-abi", "no-entrypoint", "custom-heap", "custom-panic", "anchor", "anchor-idl-build"))',
]