52 lines
1.9 KiB
TOML
52 lines
1.9 KiB
TOML
[package]
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
edition = "2021"
|
|
name = "solana-ledger-tool"
|
|
description = "Blockchain, Rebuilt for Scale"
|
|
version = "1.11.0"
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
documentation = "https://docs.rs/solana-ledger-tool"
|
|
|
|
[dependencies]
|
|
bs58 = "0.4.0"
|
|
clap = "2.33.1"
|
|
crossbeam-channel = "0.5"
|
|
csv = "1.1.6"
|
|
dashmap = "4.0.2"
|
|
histogram = "0.6.9"
|
|
itertools = "0.10.3"
|
|
log = { version = "0.4.17" }
|
|
regex = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.81"
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.11.0" }
|
|
solana-cli-output = { path = "../cli-output", version = "=1.11.0" }
|
|
solana-core = { path = "../core", version = "=1.11.0" }
|
|
solana-entry = { path = "../entry", version = "=1.11.0" }
|
|
solana-ledger = { path = "../ledger", version = "=1.11.0" }
|
|
solana-logger = { path = "../logger", version = "=1.11.0" }
|
|
solana-measure = { path = "../measure", version = "=1.11.0" }
|
|
solana-runtime = { path = "../runtime", version = "=1.11.0" }
|
|
solana-sdk = { path = "../sdk", version = "=1.11.0" }
|
|
solana-stake-program = { path = "../programs/stake", version = "=1.11.0" }
|
|
solana-storage-bigtable = { path = "../storage-bigtable", version = "=1.11.0" }
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.11.0" }
|
|
solana-version = { path = "../version", version = "=1.11.0" }
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.11.0" }
|
|
tokio = { version = "~1.14.1", features = ["full"] }
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
jemallocator = { package = "tikv-jemallocator", version = "0.4.1", features = ["unprefixed_malloc_on_supported_platforms"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
bytecount = "0.6.2"
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
signal-hook = "0.3.14"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|