mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-24 12:13:05 +00:00
790ff720a9
Updates the requirements on [rcgen](https://github.com/est31/rcgen) to permit the latest version. - [Changelog](https://github.com/est31/rcgen/blob/master/CHANGELOG.md) - [Commits](https://github.com/est31/rcgen/compare/v0.10.0...v0.11.1) --- updated-dependencies: - dependency-name: rcgen dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
986 B
TOML
30 lines
986 B
TOML
[package]
|
|
name = "perf"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.63"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["json-output"]
|
|
# Allow for json output from the perf client
|
|
json-output = ["serde", "serde_json"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.22"
|
|
hdrhistogram = { version = "7.2", default-features = false }
|
|
quinn = { path = "../quinn" }
|
|
quinn-proto = { path = "../quinn-proto" }
|
|
rcgen = "0.11.1"
|
|
rustls = { version = "0.21.0", default-features = false, features = ["dangerous_configuration"] }
|
|
rustls-pemfile = "1.0.0"
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
socket2 = "0.5"
|
|
clap = { version = "4", features = ["derive"] }
|
|
tokio = { version = "1.0.1", features = ["rt", "macros", "signal", "net", "sync"] }
|
|
tracing = "0.1.10"
|
|
tracing-subscriber = { version = "0.3.0", default-features = false, features = ["env-filter", "fmt", "ansi", "time", "local-time"] }
|
|
bytes = "1"
|