Files
solana/install/Cargo.toml
dependabot-preview[bot] d308eed136 Bump ctrlc from 3.1.3 to 3.1.4
Bumps [ctrlc](https://github.com/Detegr/rust-ctrlc) from 3.1.3 to 3.1.4.
- [Release notes](https://github.com/Detegr/rust-ctrlc/releases)
- [Commits](https://github.com/Detegr/rust-ctrlc/commits/3.1.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-21 09:00:14 -07:00

48 lines
1.3 KiB
TOML

[package]
authors = ["Solana Maintainers <maintainers@solana.com>"]
edition = "2018"
name = "solana-install"
description = "The solana cluster software installer"
version = "1.0.0"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
[dependencies]
atty = "0.2.11"
bincode = "1.2.1"
bzip2 = "0.3.3"
chrono = { version = "0.4.10", features = ["serde"] }
clap = { version = "2.33.0" }
console = "0.9.2"
ctrlc = { version = "3.1.4", features = ["termination"] }
dirs = "2.0.2"
indicatif = "0.14.0"
lazy_static = "1.4.0"
nix = "0.17.0"
reqwest = { version = "0.10.1", default-features = false, features = ["blocking", "rustls-tls"] }
serde = "1.0.104"
serde_derive = "1.0.103"
serde_yaml = "0.8.11"
solana-clap-utils = { path = "../clap-utils", version = "1.0.0" }
solana-client = { path = "../client", version = "1.0.0" }
solana-config-program = { path = "../programs/config", version = "1.0.0" }
solana-logger = { path = "../logger", version = "1.0.0" }
solana-sdk = { path = "../sdk", version = "1.0.0" }
semver = "0.9.0"
tar = "0.4.26"
tempdir = "0.3.7"
url = "2.1.1"
[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"