34 lines
905 B
TOML
34 lines
905 B
TOML
[package]
|
|
name = "spl-token-upgrade"
|
|
version = "0.1.0"
|
|
description = "Solana Program Library Token Upgrade"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana-program-library"
|
|
license = "Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
no-entrypoint = []
|
|
test-sbf = []
|
|
|
|
[dependencies]
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
num_enum = "0.5.4"
|
|
solana-program = "1.14.10"
|
|
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
solana-program-test = "1.14.10"
|
|
solana-sdk = "1.14.10"
|
|
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
|
|
spl-token-client = { version = "0.3", path = "../../token/client" }
|
|
test-case = "2.2"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|