mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-25 04:35:17 +00:00
5d1f7bccf2
This commit updates Quinn's dependency on Rustls from v0.20.3 to v0.21.0. This release includes a handful of small breaking changes which are resolved alongside the upgrade.
20 lines
620 B
TOML
20 lines
620 B
TOML
[package]
|
|
name = "bench"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
rust-version = "1.59"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.22"
|
|
bytes = "1"
|
|
hdrhistogram = { version = "7.2", default-features = false }
|
|
quinn = { path = "../quinn" }
|
|
rcgen = "0.10.0"
|
|
rustls = { version = "0.21.0", default-features = false, features = ["quic"] }
|
|
clap = { version = "3.2", features = ["derive"] }
|
|
tokio = { version = "1.0.1", features = ["rt", "sync"] }
|
|
tracing = "0.1.10"
|
|
tracing-subscriber = { version = "0.3.0", default-features = false, features = ["env-filter", "fmt", "ansi", "time", "local-time"] }
|