21 lines
787 B
TOML
21 lines
787 B
TOML
[package]
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
description = "SPL-Token Rust Client"
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
name = "spl-token-client"
|
|
repository = "https://github.com/solana-labs/solana-program-library"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
solana-client = "=1.10.26"
|
|
solana-program-test = "=1.10.26"
|
|
solana-sdk = "=1.10.26"
|
|
# We never want the entrypoint for ATA, but we want the entrypoint for token when
|
|
# testing token
|
|
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
|
|
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
|
|
spl-token-2022 = { version = "0.4", path="../program-2022" }
|
|
thiserror = "1.0"
|