2019-03-13 15:31:05 -07:00
|
|
|
[package]
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2021-11-30 16:47:00 -08:00
|
|
|
edition = "2021"
|
2019-03-13 15:31:05 -07:00
|
|
|
name = "solana-install"
|
|
|
|
description = "The solana cluster software installer"
|
2022-08-06 11:20:30 -07:00
|
|
|
version = "1.12.0"
|
2019-03-13 15:31:05 -07: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-install"
|
2019-03-13 15:31:05 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2019-06-28 17:43:43 -07:00
|
|
|
atty = "0.2.11"
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2021-07-01 12:10:52 -07:00
|
|
|
bzip2 = "0.4.3"
|
2022-08-31 15:39:12 -07:00
|
|
|
chrono = { version = "0.4.22", features = ["serde"] }
|
2020-05-11 14:32:50 -07:00
|
|
|
clap = { version = "2.33.1" }
|
2021-10-20 14:43:46 -07:00
|
|
|
console = "0.15.0"
|
2022-01-11 02:44:46 -08:00
|
|
|
crossbeam-channel = "0.5"
|
2022-04-25 13:03:20 -07:00
|
|
|
ctrlc = { version = "3.2.2", features = ["termination"] }
|
2020-10-31 09:09:17 -07:00
|
|
|
dirs-next = "2.0.0"
|
2022-08-05 14:11:17 -07:00
|
|
|
indicatif = "0.17.0"
|
2019-08-26 21:32:31 -07:00
|
|
|
lazy_static = "1.4.0"
|
2022-08-16 15:59:18 -07:00
|
|
|
nix = "0.25.0"
|
2022-07-05 13:07:08 -07:00
|
|
|
reqwest = { version = "0.11.11", default-features = false, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "json"] }
|
2022-08-09 11:49:52 -07:00
|
|
|
semver = "1.0.13"
|
2022-09-07 15:54:44 -07:00
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
2022-07-25 11:39:18 -07:00
|
|
|
serde_yaml = "0.8.26"
|
2022-08-06 11:20:30 -07:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.12.0" }
|
|
|
|
solana-config-program = { path = "../programs/config", version = "=1.12.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.12.0" }
|
2022-08-30 08:56:56 -07:00
|
|
|
solana-rpc-client = { path = "../rpc-client", version = "=1.12.0", default-features = false }
|
2022-08-06 11:20:30 -07:00
|
|
|
solana-sdk = { path = "../sdk", version = "=1.12.0" }
|
|
|
|
solana-version = { path = "../version", version = "=1.12.0" }
|
2021-12-16 14:06:56 -08:00
|
|
|
tar = "0.4.38"
|
2022-01-09 11:26:08 -08:00
|
|
|
tempfile = "3.3.0"
|
2021-06-23 13:54:50 -07:00
|
|
|
url = "2.2.2"
|
2019-06-08 19:01:22 -07:00
|
|
|
|
2019-06-08 19:25:02 -07:00
|
|
|
[target."cfg(windows)".dependencies]
|
2019-08-29 09:02:29 -07:00
|
|
|
winapi = "0.3.8"
|
2021-09-15 22:06:45 -07:00
|
|
|
winreg = "0.10"
|
2019-06-08 19:25:02 -07:00
|
|
|
|
2020-04-16 18:18:28 -07:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|