2018-12-13 21:11:09 -08: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"
|
2018-12-13 21:11:09 -08:00
|
|
|
name = "solana-ledger-tool"
|
2019-01-07 22:18:48 -08:00
|
|
|
description = "Blockchain, Rebuilt for Scale"
|
2022-09-13 07:06:15 -07:00
|
|
|
version = "1.15.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"
|
2022-08-31 15:39:12 -07:00
|
|
|
chrono = "0.4.22"
|
2022-06-23 22:02:41 -07:00
|
|
|
clap = "2.33.1"
|
2022-01-11 02:44:46 -08:00
|
|
|
crossbeam-channel = "0.5"
|
2021-06-28 08:56:42 -07:00
|
|
|
csv = "1.1.6"
|
2022-03-11 00:12:27 -08:00
|
|
|
dashmap = "4.0.2"
|
2022-03-13 14:35:06 -07:00
|
|
|
histogram = "0.6.9"
|
2022-09-21 14:28:49 -07:00
|
|
|
itertools = "0.10.5"
|
2022-05-04 18:49:18 -07:00
|
|
|
log = { version = "0.4.17" }
|
2020-07-20 21:06:13 -07:00
|
|
|
regex = "1"
|
2020-11-07 23:43:50 -08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-08-10 08:45:42 -07:00
|
|
|
serde_json = "1.0.83"
|
2022-09-18 21:52:53 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.15.0" }
|
2022-09-13 07:06:15 -07:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.15.0" }
|
|
|
|
solana-cli-output = { path = "../cli-output", version = "=1.15.0" }
|
|
|
|
solana-core = { path = "../core", version = "=1.15.0" }
|
|
|
|
solana-entry = { path = "../entry", version = "=1.15.0" }
|
|
|
|
solana-geyser-plugin-manager = { path = "../geyser-plugin-manager", version = "=1.15.0" }
|
|
|
|
solana-ledger = { path = "../ledger", version = "=1.15.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.15.0" }
|
|
|
|
solana-measure = { path = "../measure", version = "=1.15.0" }
|
|
|
|
solana-runtime = { path = "../runtime", version = "=1.15.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.15.0" }
|
|
|
|
solana-stake-program = { path = "../programs/stake", version = "=1.15.0" }
|
|
|
|
solana-storage-bigtable = { path = "../storage-bigtable", version = "=1.15.0" }
|
|
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.15.0" }
|
|
|
|
solana-version = { path = "../version", version = "=1.15.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.15.0" }
|
2022-08-05 19:50:45 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2018-12-13 21:11:09 -08:00
|
|
|
|
2021-11-19 07:48:07 -08:00
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
2022-03-11 09:05:57 -08:00
|
|
|
jemallocator = { package = "tikv-jemallocator", version = "0.4.1", features = ["unprefixed_malloc_on_supported_platforms"] }
|
2021-11-19 07:48:07 -08:00
|
|
|
|
2018-12-07 20:44:59 -08:00
|
|
|
[dev-dependencies]
|
2021-08-09 12:36:03 -07:00
|
|
|
assert_cmd = "2.0"
|
2022-08-08 23:33:43 -07:00
|
|
|
bytecount = "0.6.3"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
2020-06-21 11:08:17 -07:00
|
|
|
[target."cfg(unix)".dependencies]
|
2022-05-18 08:28:52 -07:00
|
|
|
signal-hook = "0.3.14"
|
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"]
|