Files
solana/cli/Cargo.toml

61 lines
2.1 KiB
TOML
Raw Normal View History

[package]
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
edition = "2018"
name = "solana-cli"
description = "Blockchain, Rebuilt for Scale"
2021-02-26 20:27:54 -08:00
version = "1.5.12"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
[dependencies]
bincode = "1.3.1"
bs58 = "0.3.1"
chrono = { version = "0.4.11", features = ["serde"] }
clap = "2.33.1"
2019-08-12 21:33:13 -07:00
criterion-stats = "0.3.0"
ctrlc = { version = "3.1.5", features = ["termination"] }
console = "0.11.3"
2020-10-31 09:09:17 -07:00
dirs-next = "2.0.0"
log = "0.4.11"
Inflector = "0.11.4"
indicatif = "0.15.0"
humantime = "2.0.1"
2019-04-25 11:29:44 -06:00
num-traits = "0.2"
pretty-hex = "0.2.1"
reqwest = { version = "0.10.8", default-features = false, features = ["blocking", "rustls-tls", "json"] }
chore: bump serde from 1.0.112 to 1.0.118 (bp #14828) (#15394) * chore: bump serde from 1.0.112 to 1.0.118 (#14828) * chore: bump serde from 1.0.112 to 1.0.122 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.112 to 1.0.122. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.112...v1.0.122) Signed-off-by: dependabot[bot] <support@github.com> * [auto-commit] Update all Cargo lock files * Update frozen_abi digest following serde update * Revert "chore: bump serde from 1.0.112 to 1.0.122" This reverts commit a3ef4442a4c985144ae2bd7ceaf8899a7ab8d7c0. * Revert "[auto-commit] Update all Cargo lock files" This reverts commit c41c3b005fb1ccade55155302c52cd5736c4b55f. * chore: bump serde from 1.0.112 to 1.0.118 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.112 to 1.0.118. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.112...v1.0.118) Signed-off-by: dependabot[bot] <support@github.com> * [auto-commit] Update all Cargo lock files * Remove serum-dex pinning * blind commit! Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com> Co-authored-by: Ryo Onodera <ryoqun@gmail.com> (cherry picked from commit 1df93fa2bef7b987b14915f1ae2a005a49755424) # Conflicts: # banks-interface/Cargo.toml # perf/Cargo.toml # programs/config/Cargo.toml * Fix conflicts Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ryo Onodera <ryoqun@gmail.com>
2021-02-18 13:29:17 +00:00
serde = "1.0.118"
serde_derive = "1.0.103"
serde_json = "1.0.56"
2021-02-26 20:27:54 -08:00
solana-account-decoder = { path = "../account-decoder", version = "1.5.12" }
solana-bpf-loader-program = { path = "../programs/bpf_loader", version = "1.5.12" }
solana-clap-utils = { path = "../clap-utils", version = "1.5.12" }
solana-cli-config = { path = "../cli-config", version = "1.5.12" }
solana-cli-output = { path = "../cli-output", version = "1.5.12" }
solana-client = { path = "../client", version = "1.5.12" }
solana-config-program = { path = "../programs/config", version = "1.5.12" }
solana-faucet = { path = "../faucet", version = "1.5.12" }
solana-logger = { path = "../logger", version = "1.5.12" }
solana-net-utils = { path = "../net-utils", version = "1.5.12" }
solana_rbpf = "=0.2.5"
2021-02-26 20:27:54 -08:00
solana-remote-wallet = { path = "../remote-wallet", version = "1.5.12" }
solana-sdk = { path = "../sdk", version = "1.5.12" }
solana-stake-program = { path = "../programs/stake", version = "1.5.12" }
solana-transaction-status = { path = "../transaction-status", version = "1.5.12" }
solana-version = { path = "../version", version = "1.5.12" }
solana-vote-program = { path = "../programs/vote", version = "1.5.12" }
thiserror = "1.0.21"
tiny-bip39 = "0.7.0"
url = "2.1.1"
[dev-dependencies]
2021-02-26 20:27:54 -08:00
solana-core = { path = "../core", version = "1.5.12" }
tempfile = "3.1.0"
[[bin]]
name = "solana"
path = "src/main.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]