Files
solana/cli/Cargo.toml
mergify[bot] bc3aa53e02 Runtime feature activation framework (bp #12376) (#12497)
* Runtime feature activation framework

(cherry picked from commit 93259f0bae)

# Conflicts:
#	runtime/src/bank.rs

* Add feature set identifier to gossiped version information

(cherry picked from commit 35f5f9fc7b)

# Conflicts:
#	Cargo.lock
#	version/Cargo.toml

* Port instructions sysvar and secp256k1 program activation to FeatureSet

(cherry picked from commit c10da16d7b)

# Conflicts:
#	runtime/src/bank.rs
#	runtime/src/message_processor.rs

* Add feature management commands

(cherry picked from commit 93ed0ab2bb)

# Conflicts:
#	Cargo.lock
#	cli/Cargo.toml

* Make test_process_rest_api less fragile

(cherry picked from commit 7526bb96f3)

* Remove id field

(cherry picked from commit cc6ba1e131)

* FeatureSet test

(cherry picked from commit 92406cf9a0)

* cargo fmt

(cherry picked from commit 199940d683)

* cli review feedback

(cherry picked from commit 3a2b8c5e5b)

* Rename active() to is_active()

(cherry picked from commit e39fac9f01)

* Resolve merge conflicts

* Remove continues from compute_active_feature_set()

Co-authored-by: Michael Vines <mvines@gmail.com>
2020-09-26 17:49:53 +00:00

62 lines
2.3 KiB
TOML

[package]
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
edition = "2018"
name = "solana-cli"
description = "Blockchain, Rebuilt for Scale"
version = "1.3.14"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
[dependencies]
bincode = "1.3.1"
bs58 = "0.3.1"
chrono = { version = "0.4.11", features = ["serde"] }
clap = "2.33.1"
criterion-stats = "0.3.0"
ctrlc = { version = "3.1.5", features = ["termination"] }
console = "0.11.3"
dirs = "2.0.2"
log = "0.4.8"
Inflector = "0.11.4"
indicatif = "0.15.0"
humantime = "2.0.1"
num-traits = "0.2"
pretty-hex = "0.1.1"
reqwest = { version = "0.10.6", default-features = false, features = ["blocking", "rustls-tls", "json"] }
serde = "1.0.112"
serde_derive = "1.0.103"
serde_json = "1.0.56"
solana-account-decoder = { path = "../account-decoder", version = "1.3.14" }
solana-budget-program = { path = "../programs/budget", version = "1.3.14" }
solana-clap-utils = { path = "../clap-utils", version = "1.3.14" }
solana-cli-config = { path = "../cli-config", version = "1.3.14" }
solana-cli-output = { path = "../cli-output", version = "1.3.14" }
solana-client = { path = "../client", version = "1.3.14" }
solana-config-program = { path = "../programs/config", version = "1.3.14" }
solana-faucet = { path = "../faucet", version = "1.3.14" }
solana-logger = { path = "../logger", version = "1.3.14" }
solana-net-utils = { path = "../net-utils", version = "1.3.14" }
solana-remote-wallet = { path = "../remote-wallet", version = "1.3.14" }
solana-runtime = { path = "../runtime", version = "1.3.14" }
solana-sdk = { path = "../sdk", version = "1.3.14" }
solana-stake-program = { path = "../programs/stake", version = "1.3.14" }
solana-transaction-status = { path = "../transaction-status", version = "1.3.14" }
solana-version = { path = "../version", version = "1.3.14" }
solana-vote-program = { path = "../programs/vote", version = "1.3.14" }
solana-vote-signer = { path = "../vote-signer", version = "1.3.14" }
thiserror = "1.0.20"
url = "2.1.1"
[dev-dependencies]
solana-core = { path = "../core", version = "1.3.14" }
solana-budget-program = { path = "../programs/budget", version = "1.3.14" }
tempfile = "3.1.0"
[[bin]]
name = "solana"
path = "src/main.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]