26 lines
751 B
TOML
26 lines
751 B
TOML
[package]
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
edition = "2018"
|
|
name = "solana-ledger-tool"
|
|
description = "Blockchain, Rebuilt for Scale"
|
|
version = "0.20.0"
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
|
|
[dependencies]
|
|
bincode = "1.2.0"
|
|
clap = "2.33.0"
|
|
serde = "1.0.101"
|
|
serde_derive = "1.0.101"
|
|
serde_json = "1.0.41"
|
|
serde_yaml = "0.8.11"
|
|
solana-core = { path = "../core", version = "0.20.0" }
|
|
solana-ledger = { path = "../ledger", version = "0.20.0" }
|
|
solana-logger = { path = "../logger", version = "0.20.0" }
|
|
solana-runtime = { path = "../runtime", version = "0.20.0" }
|
|
solana-sdk = { path = "../sdk", version = "0.20.0" }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "0.11"
|