mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-21 02:33:23 +00:00
cd974a7945
This causes nom to be pulled in, which currently causes the CI error and build conflict between `funty` and `bitvec`: https://github.com/myrrlyn/funty/issues/3 We don't need the feature in this scenario anyway.
25 lines
600 B
TOML
25 lines
600 B
TOML
[package]
|
|
name = "bench"
|
|
version = "0.1.0"
|
|
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.22"
|
|
bytes = "1"
|
|
futures = "0.3.8"
|
|
hdrhistogram = { version = "7.2", default-features = false }
|
|
quinn = { path = "../quinn" }
|
|
rcgen = "0.8"
|
|
rustls = "0.19"
|
|
structopt = "0.3"
|
|
tokio = { version = "1.0.1", features = ["rt"] }
|
|
tracing = "0.1.10"
|
|
tracing-subscriber = { version = "0.2.5", default-features = false, features = ["env-filter", "fmt", "ansi", "chrono"]}
|
|
|
|
[[bin]]
|
|
name = "bulk"
|
|
path = "src/bulk.rs"
|