2020-03-17 23:30:23 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-streamer"
|
|
|
|
description = "Solana Streamer"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-streamer"
|
2023-02-23 06:01:54 -08:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2020-03-17 23:30:23 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-16 06:50:57 -07:00
|
|
|
async-channel = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
|
|
|
histogram = { workspace = true }
|
|
|
|
indexmap = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
nix = { workspace = true }
|
|
|
|
pem = { workspace = true }
|
|
|
|
percentage = { workspace = true }
|
|
|
|
pkcs8 = { workspace = true, features = ["alloc"] }
|
|
|
|
quinn = { workspace = true }
|
|
|
|
quinn-proto = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
rcgen = { workspace = true }
|
|
|
|
rustls = { workspace = true, features = ["dangerous_configuration"] }
|
|
|
|
solana-metrics = { workspace = true }
|
|
|
|
solana-perf = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
x509-parser = { workspace = true }
|
2022-02-04 06:27:09 -08:00
|
|
|
|
2020-03-17 23:30:23 -07:00
|
|
|
[dev-dependencies]
|
2023-08-30 10:48:27 -07:00
|
|
|
assert_matches = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-logger = { workspace = true }
|
2020-03-17 23:30:23 -07:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
|
|
|
name = "solana_streamer"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|