2019-10-18 09:28:51 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-ledger"
|
2022-09-13 07:06:15 -07:00
|
|
|
version = "1.15.0"
|
2019-10-18 09:28:51 -07:00
|
|
|
description = "Solana ledger"
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2019-10-18 09:28:51 -07: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"
|
2021-11-30 16:47:00 -08:00
|
|
|
edition = "2021"
|
2019-10-18 09:28:51 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2022-09-24 09:31:50 -07:00
|
|
|
assert_matches = "1.5.0"
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2022-03-25 12:32:22 -07:00
|
|
|
bitflags = "1.3.1"
|
2021-06-29 14:08:04 -07:00
|
|
|
byteorder = "1.4.3"
|
2022-08-31 15:39:12 -07:00
|
|
|
chrono = { version = "0.4.22", features = ["serde"] }
|
2021-05-27 11:03:15 -07:00
|
|
|
chrono-humanize = "0.2.1"
|
2021-06-02 12:36:28 -07:00
|
|
|
crossbeam-channel = "0.5"
|
2022-06-22 10:17:43 -07:00
|
|
|
dashmap = { version = "4.0.2", features = ["rayon", "raw-api"] }
|
2021-02-17 10:46:20 -08:00
|
|
|
fs_extra = "1.2.0"
|
2022-09-22 15:26:18 -07:00
|
|
|
futures = "0.3.24"
|
2022-09-21 14:28:49 -07:00
|
|
|
itertools = "0.10.5"
|
2020-06-17 08:27:03 -07:00
|
|
|
lazy_static = "1.4.0"
|
2022-08-16 12:01:37 -07:00
|
|
|
libc = "0.2.131"
|
2022-05-04 18:49:18 -07:00
|
|
|
log = { version = "0.4.17" }
|
2022-06-22 13:39:07 -07:00
|
|
|
lru = "0.7.7"
|
2021-12-20 23:06:14 -08:00
|
|
|
num_cpus = "1.13.1"
|
2022-04-25 15:05:59 -07:00
|
|
|
num_enum = "0.5.7"
|
2022-08-02 15:37:28 -07:00
|
|
|
prost = "0.11.0"
|
2020-04-27 09:33:33 -07:00
|
|
|
rand = "0.7.0"
|
|
|
|
rand_chacha = "0.2.2"
|
2022-05-18 08:39:57 -07:00
|
|
|
rayon = "1.5.3"
|
2022-09-24 08:00:13 -07:00
|
|
|
reed-solomon-erasure = { version = "6.0.0", features = ["simd-accel"] }
|
2022-09-07 15:54:44 -07:00
|
|
|
serde = "1.0.144"
|
2022-08-10 13:20:12 -07:00
|
|
|
serde_bytes = "0.11.7"
|
2022-09-08 13:07:27 -07:00
|
|
|
sha2 = "0.10.5"
|
2022-09-13 07:06:15 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.15.0" }
|
|
|
|
solana-bpf-loader-program = { path = "../programs/bpf_loader", version = "=1.15.0" }
|
|
|
|
solana-entry = { path = "../entry", version = "=1.15.0" }
|
|
|
|
solana-frozen-abi = { path = "../frozen-abi", version = "=1.15.0" }
|
|
|
|
solana-frozen-abi-macro = { path = "../frozen-abi/macro", version = "=1.15.0" }
|
|
|
|
solana-measure = { path = "../measure", version = "=1.15.0" }
|
|
|
|
solana-metrics = { path = "../metrics", version = "=1.15.0" }
|
|
|
|
solana-perf = { path = "../perf", version = "=1.15.0" }
|
|
|
|
solana-program-runtime = { path = "../program-runtime", version = "=1.15.0" }
|
|
|
|
solana-rayon-threadlimit = { path = "../rayon-threadlimit", 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-storage-proto = { path = "../storage-proto", version = "=1.15.0" }
|
|
|
|
solana-transaction-status = { path = "../transaction-status", version = "=1.15.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.15.0" }
|
2022-08-05 06:23:53 -07:00
|
|
|
spl-token = { version = "=3.5.0", features = ["no-entrypoint"] }
|
2022-08-16 14:47:12 -07:00
|
|
|
spl-token-2022 = { version = "=0.4.3", features = ["no-entrypoint"] }
|
2022-05-17 15:44:35 -07:00
|
|
|
static_assertions = "1.1.0"
|
2022-01-09 11:26:08 -08:00
|
|
|
tempfile = "3.3.0"
|
2020-06-17 08:27:03 -07:00
|
|
|
thiserror = "1.0"
|
2022-08-05 19:50:45 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-03-16 14:32:50 -07:00
|
|
|
tokio-stream = "0.1"
|
2021-06-17 15:45:09 -07:00
|
|
|
trees = "0.4.2"
|
2021-06-07 01:19:37 -07:00
|
|
|
|
2019-10-18 09:28:51 -07:00
|
|
|
[dependencies.rocksdb]
|
|
|
|
# Avoid the vendored bzip2 within rocksdb-sys that can cause linker conflicts
|
|
|
|
# when also using the bzip2 crate
|
2022-08-11 07:41:01 -07:00
|
|
|
version = "0.19.0"
|
2019-10-18 09:28:51 -07:00
|
|
|
default-features = false
|
|
|
|
features = ["lz4"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-01 06:11:45 -07:00
|
|
|
bs58 = "0.4.0"
|
2021-08-13 09:37:45 -07:00
|
|
|
matches = "0.1.9"
|
2022-09-13 07:06:15 -07:00
|
|
|
solana-account-decoder = { path = "../account-decoder", version = "=1.15.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.15.0" }
|
2022-08-19 14:07:32 -07:00
|
|
|
test-case = "2.1.0"
|
2019-10-18 09:28:51 -07:00
|
|
|
|
2020-12-18 06:32:43 -08:00
|
|
|
[build-dependencies]
|
2021-06-09 09:57:39 -07:00
|
|
|
rustc_version = "0.4"
|
2020-12-18 06:32:43 -08:00
|
|
|
|
2019-10-18 09:28:51 -07:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
|
|
|
name = "solana_ledger"
|
2019-12-12 13:27:33 -08:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sigverify_shreds"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
2021-10-13 00:55:19 -07:00
|
|
|
[[bench]]
|
|
|
|
name = "blockstore"
|
|
|
|
|
2020-04-16 18:18:28 -07:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|