mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-21 10:43:25 +00:00
26 lines
650 B
TOML
26 lines
650 B
TOML
[package]
|
|
name = "bench"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bytes = { workspace = true }
|
|
clap = { workspace = true }
|
|
hdrhistogram = { workspace = true }
|
|
quinn = { package = "iroh-quinn", path = "../quinn", features = ["ring"] }
|
|
rcgen = { workspace = true }
|
|
rustls = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Use private Apple APIs to send multiple packets in a single syscall.
|
|
fast-apple-datapath = ["quinn/fast-apple-datapath"]
|