mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-12 06:20:48 +00:00
2156ac1c30
* 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>
28 lines
681 B
TOML
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"]
|