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-05-27 08:51:53 -07:00
|
|
|
version = "1.8.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]
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2021-05-28 11:30:34 -07:00
|
|
|
bs58 = "0.4.0"
|
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"
|
2021-06-16 08:50:54 -07:00
|
|
|
ctrlc = { version = "3.1.9", features = ["termination"] }
|
2021-05-27 11:55:27 -07:00
|
|
|
console = "0.14.1"
|
2021-09-13 08:07:25 -07:00
|
|
|
const_format = "0.2.20"
|
2021-06-30 11:32:01 -07:00
|
|
|
log = "0.4.14"
|
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-07-01 08:59:30 -07:00
|
|
|
reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] }
|
2021-08-30 11:19:34 -07:00
|
|
|
serde = "1.0.130"
|
2019-11-26 14:44:20 -08:00
|
|
|
serde_derive = "1.0.103"
|
2021-09-16 13:23:25 -07:00
|
|
|
serde_json = "1.0.68"
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.8.0" }
|
|
|
|
solana-bpf-loader-program = { path = "../programs/bpf_loader", version = "=1.8.0" }
|
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.8.0" }
|
|
|
|
solana-cli-config = { path = "../cli-config", version = "=1.8.0" }
|
|
|
|
solana-cli-output = { path = "../cli-output", version = "=1.8.0" }
|
|
|
|
solana-client = { path = "../client", version = "=1.8.0" }
|
|
|
|
solana-config-program = { path = "../programs/config", version = "=1.8.0" }
|
|
|
|
solana-faucet = { path = "../faucet", version = "=1.8.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.8.0" }
|
2021-08-04 00:50:28 -07:00
|
|
|
solana_rbpf = "=0.2.14"
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-remote-wallet = { path = "../remote-wallet", version = "=1.8.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.8.0" }
|
|
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.8.0" }
|
|
|
|
solana-version = { path = "../version", version = "=1.8.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.8.0" }
|
2021-04-05 13:53:50 -07:00
|
|
|
spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] }
|
2021-09-06 18:53:57 -07:00
|
|
|
thiserror = "1.0.29"
|
2020-10-20 21:18:35 -07:00
|
|
|
tiny-bip39 = "0.7.0"
|
2018-12-13 21:11:09 -08:00
|
|
|
|
2019-03-12 11:44:41 -07:00
|
|
|
[dev-dependencies]
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-core = { path = "../core", version = "=1.8.0" }
|
2021-07-23 08:25:03 -07:00
|
|
|
solana-streamer = { path = "../streamer", version = "=1.8.0" }
|
2021-05-31 11:05:07 -07:00
|
|
|
tempfile = "3.2.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"]
|