Files
noq/bench/Cargo.toml
Rüdiger Klaehn 2156ac1c30 bench: Allow configuring the runtime type in the bulk bench (#280)
* Allow configuring the runtime type in the bulk bench

Also switch the default to the multithreaded runtime. I think that is more
representative of actual use.

* fmt

* clippy

---------

Co-authored-by: Floris Bruynooghe <flub@n0.computer>
2026-03-19 08:24:04 +00:00

28 lines
681 B
TOML

[package]
name = "bench"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
anyhow = { workspace = true }
bytes = { workspace = true }
clap = { workspace = true }
hdrhistogram = { workspace = true }
noq = { package = "noq", path = "../noq", features = ["ring"] }
rcgen = { workspace = true }
rustls = { workspace = true }
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[lints]
workspace = true
[features]
default = []
# Use private Apple APIs to send multiple packets in a single syscall.
fast-apple-datapath = ["noq/fast-apple-datapath"]