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"
|
|
|
|
name = "solana-ledger-tool"
|
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-ledger-tool"
|
2018-12-13 21:11:09 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2021-05-28 11:30:34 -07:00
|
|
|
bs58 = "0.4.0"
|
2021-06-14 09:05:11 -07:00
|
|
|
bytecount = "0.6.2"
|
2020-05-11 14:32:50 -07:00
|
|
|
clap = "2.33.1"
|
2021-06-28 08:56:42 -07:00
|
|
|
csv = "1.1.6"
|
2021-05-28 13:04:07 -07:00
|
|
|
futures = "0.3.15"
|
2020-07-20 21:06:13 -07:00
|
|
|
futures-util = "0.3.5"
|
2019-12-12 15:54:50 -08:00
|
|
|
histogram = "*"
|
2021-06-14 11:32:20 -07:00
|
|
|
itertools = "0.10.1"
|
2020-12-12 20:48:23 -08:00
|
|
|
log = { version = "0.4.11" }
|
2020-07-20 21:06:13 -07:00
|
|
|
regex = "1"
|
2020-11-07 23:43:50 -08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-06-04 10:45:26 -07:00
|
|
|
serde_json = "1.0.64"
|
2021-06-23 08:44:34 -07:00
|
|
|
serde_yaml = "0.8.17"
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.8.0" }
|
|
|
|
solana-cli-output = { path = "../cli-output", version = "=1.8.0" }
|
2021-06-02 09:29:02 -07:00
|
|
|
solana-core = { path = "../core", version = "=1.8.0" }
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-ledger = { path = "../ledger", version = "=1.8.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.8.0" }
|
|
|
|
solana-measure = { path = "../measure", version = "=1.8.0" }
|
|
|
|
solana-runtime = { path = "../runtime", version = "=1.8.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.8.0" }
|
|
|
|
solana-stake-program = { path = "../programs/stake", version = "=1.8.0" }
|
|
|
|
solana-storage-bigtable = { path = "../storage-bigtable", 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-05-31 11:05:07 -07:00
|
|
|
tempfile = "3.2.0"
|
2021-04-05 08:55:57 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2018-12-13 21:11:09 -08:00
|
|
|
|
2018-12-07 20:44:59 -08:00
|
|
|
[dev-dependencies]
|
2020-03-27 08:57:01 -07:00
|
|
|
assert_cmd = "1.0"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
2020-06-21 11:08:17 -07:00
|
|
|
[target."cfg(unix)".dependencies]
|
2021-06-08 11:12:17 -07:00
|
|
|
signal-hook = "0.2.3"
|
2020-06-21 11:08:17 -07:00
|
|
|
|
2020-04-16 18:18:28 -07:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|