Files
solana/streamer/Cargo.toml
behzad nouri 8229a4fbf6 removes raw indexing from streamer (#19183)
Raw indexing is verbose and error-prone. This same code had an indexing
bug causing validator nodes panic just a few months ago:
https://github.com/solana-labs/solana/commit/482b8c6be
2021-08-12 01:42:12 +00:00

32 lines
856 B
TOML

[package]
name = "solana-streamer"
version = "1.8.0"
description = "Solana Streamer"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-streamer"
edition = "2018"
[dependencies]
itertools = "0.10.1"
log = "0.4.14"
solana-metrics = { path = "../metrics", version = "=1.8.0" }
solana-sdk = { path = "../sdk", version = "=1.8.0" }
thiserror = "1.0"
solana-measure = { path = "../measure", version = "=1.8.0" }
solana-logger = { path = "../logger", version = "=1.8.0" }
libc = "0.2.99"
nix = "0.20.0"
solana-perf = { path = "../perf", version = "=1.8.0" }
[dev-dependencies]
[lib]
crate-type = ["lib"]
name = "solana_streamer"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]