2018-12-13 21:11:09 -08:00
|
|
|
[package]
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2018-12-13 21:11:09 -08:00
|
|
|
edition = "2018"
|
2019-08-22 13:51:16 -07:00
|
|
|
name = "solana-cli"
|
2019-01-07 22:18:48 -08:00
|
|
|
description = "Blockchain, Rebuilt for Scale"
|
2021-03-12 23:31:17 -08:00
|
|
|
version = "1.7.0"
|
2018-12-13 21:11:09 -08:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
homepage = "https://solana.com/"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-cli"
|
2018-12-13 21:11:09 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-07-08 17:08:05 -07:00
|
|
|
bincode = "1.3.1"
|
2020-04-20 20:46:55 -07:00
|
|
|
bs58 = "0.3.1"
|
2020-03-10 07:43:18 -07:00
|
|
|
chrono = { version = "0.4.11", features = ["serde"] }
|
2020-05-11 14:32:50 -07:00
|
|
|
clap = "2.33.1"
|
2019-08-12 21:33:13 -07:00
|
|
|
criterion-stats = "0.3.0"
|
2020-07-12 19:59:29 -07:00
|
|
|
ctrlc = { version = "3.1.5", features = ["termination"] }
|
2020-05-30 06:47:41 -07:00
|
|
|
console = "0.11.3"
|
2020-10-31 09:09:17 -07:00
|
|
|
dirs-next = "2.0.0"
|
2020-12-12 20:48:23 -08:00
|
|
|
log = "0.4.11"
|
2020-04-14 12:10:25 -07:00
|
|
|
Inflector = "0.11.4"
|
2020-06-14 15:49:05 -07:00
|
|
|
indicatif = "0.15.0"
|
2020-07-14 11:26:56 -07:00
|
|
|
humantime = "2.0.1"
|
2019-04-25 10:29:44 -07:00
|
|
|
num-traits = "0.2"
|
2020-11-20 01:02:37 -08:00
|
|
|
pretty-hex = "0.2.1"
|
2021-03-18 10:03:50 -07:00
|
|
|
reqwest = { version = "0.11.2", default-features = false, features = ["blocking", "rustls-tls", "json"] }
|
2021-02-05 02:23:24 -08:00
|
|
|
serde = "1.0.122"
|
2019-11-26 14:44:20 -08:00
|
|
|
serde_derive = "1.0.103"
|
2020-07-13 17:01:52 -07:00
|
|
|
serde_json = "1.0.56"
|
2021-03-15 22:16:08 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.7.0" }
|
|
|
|
solana-bpf-loader-program = { path = "../programs/bpf_loader", version = "=1.7.0" }
|
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.7.0" }
|
|
|
|
solana-cli-config = { path = "../cli-config", version = "=1.7.0" }
|
|
|
|
solana-cli-output = { path = "../cli-output", version = "=1.7.0" }
|
|
|
|
solana-client = { path = "../client", version = "=1.7.0" }
|
|
|
|
solana-config-program = { path = "../programs/config", version = "=1.7.0" }
|
|
|
|
solana-faucet = { path = "../faucet", version = "=1.7.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.7.0" }
|
|
|
|
solana-net-utils = { path = "../net-utils", version = "=1.7.0" }
|
2021-05-19 13:43:59 -07:00
|
|
|
solana_rbpf = "=0.2.9"
|
2021-03-15 22:16:08 -07:00
|
|
|
solana-remote-wallet = { path = "../remote-wallet", version = "=1.7.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.7.0" }
|
|
|
|
solana-stake-program = { path = "../programs/stake", version = "=1.7.0" }
|
|
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.7.0" }
|
|
|
|
solana-version = { path = "../version", version = "=1.7.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.7.0" }
|
2021-04-05 13:53:50 -07:00
|
|
|
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
|
2020-10-19 01:02:08 -07:00
|
|
|
thiserror = "1.0.21"
|
2020-10-20 21:18:35 -07:00
|
|
|
tiny-bip39 = "0.7.0"
|
2020-01-09 07:44:47 -08:00
|
|
|
url = "2.1.1"
|
2018-12-13 21:11:09 -08:00
|
|
|
|
2019-03-12 11:44:41 -07:00
|
|
|
[dev-dependencies]
|
2021-03-15 22:16:08 -07:00
|
|
|
solana-core = { path = "../core", version = "=1.7.0" }
|
2019-11-06 06:47:34 -08:00
|
|
|
tempfile = "3.1.0"
|
2019-03-12 11:44:41 -07:00
|
|
|
|
2019-08-22 13:51:16 -07:00
|
|
|
[[bin]]
|
|
|
|
name = "solana"
|
|
|
|
path = "src/main.rs"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|