* spl-token: New program feature flag (#21354)
* spl-token: Add feature flag for new release
* Remove all spl token version declarations
(cherry picked from commit 02bc4e3fc1
)
# Conflicts:
# account-decoder/Cargo.toml
# accounts-cluster-bench/Cargo.toml
# accounts-cluster-bench/src/main.rs
# rpc/Cargo.toml
# rpc/src/rpc.rs
# runtime/src/accounts_index.rs
# runtime/src/bank.rs
# runtime/src/lib.rs
# sdk/src/feature_set.rs
# tokens/Cargo.toml
# tokens/src/spl_token.rs
# transaction-status/Cargo.toml
* Fix merge issues
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
edition = "2018"
|
|
name = "solana-accounts-cluster-bench"
|
|
version = "1.8.6"
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
clap = "2.33.1"
|
|
log = "0.4.11"
|
|
rand = "0.7.0"
|
|
rayon = "1.4.1"
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.8.6" }
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.8.6" }
|
|
solana-client = { path = "../client", version = "=1.8.6" }
|
|
solana-core = { path = "../core", version = "=1.8.6" }
|
|
solana-faucet = { path = "../faucet", version = "=1.8.6" }
|
|
solana-gossip = { path = "../gossip", version = "=1.8.6" }
|
|
solana-logger = { path = "../logger", version = "=1.8.6" }
|
|
solana-measure = { path = "../measure", version = "=1.8.6" }
|
|
solana-net-utils = { path = "../net-utils", version = "=1.8.6" }
|
|
solana-runtime = { path = "../runtime", version = "=1.8.6" }
|
|
solana-sdk = { path = "../sdk", version = "=1.8.6" }
|
|
solana-streamer = { path = "../streamer", version = "=1.8.6" }
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.8.6" }
|
|
solana-version = { path = "../version", version = "=1.8.6" }
|
|
spl-token = { version = "=3.2.0", features = ["no-entrypoint"] }
|
|
|
|
[dev-dependencies]
|
|
solana-local-cluster = { path = "../local-cluster", version = "=1.8.6" }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|