Files
solana/install/Cargo.toml
dependabot-preview[bot] 46391397b8 Bump indicatif from 0.12.0 to 0.13.0 (#6736)
Bumps [indicatif](https://github.com/mitsuhiko/indicatif) from 0.12.0 to 0.13.0.
- [Release notes](https://github.com/mitsuhiko/indicatif/releases)
- [Commits](https://github.com/mitsuhiko/indicatif/compare/0.12.0...0.13.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-11-05 13:25:28 -07:00

50 lines
1.3 KiB
TOML

[package]
authors = ["Solana Maintainers <maintainers@solana.com>"]
edition = "2018"
name = "solana-install"
description = "The solana cluster software installer"
version = "0.21.0"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
[dependencies]
atty = "0.2.11"
bincode = "1.2.0"
bs58 = "0.3.0"
bzip2 = "0.3.3"
chrono = { version = "0.4.9", features = ["serde"] }
clap = { version = "2.33.0" }
console = "0.9.1"
ctrlc = { version = "3.1.3", features = ["termination"] }
dirs = "2.0.2"
indicatif = "0.13.0"
lazy_static = "1.4.0"
log = "0.4.8"
nix = "0.15.0"
reqwest = { version = "0.9.22", default-features = false, features = ["rustls-tls"] }
semver = "0.9.0"
serde = "1.0.102"
serde_derive = "1.0.102"
serde_yaml = "0.8.11"
sha2 = "0.8.0"
solana-client = { path = "../client", version = "0.21.0" }
solana-config-api = { path = "../programs/config_api", version = "0.21.0" }
solana-logger = { path = "../logger", version = "0.21.0" }
solana-sdk = { path = "../sdk", version = "0.21.0" }
tar = "0.4.26"
tempdir = "0.3.7"
url = "2.1.0"
[target."cfg(windows)".dependencies]
winapi = "0.3.8"
winreg = "0.6"
[[bin]]
name = "solana-install"
path = "src/main-install.rs"
[[bin]]
name = "solana-install-init"
path = "src/main-install-init.rs"