mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-23 03:35:14 +00:00
ee6f7d01f2
this is necessary for export_keying_material to work; can be undone once rustls pushes a new version of the crates.
22 lines
572 B
TOML
22 lines
572 B
TOML
[package]
|
|
name = "bench"
|
|
version = "0.1.0"
|
|
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.22"
|
|
futures = "0.3.1"
|
|
quinn = { path = "../quinn" }
|
|
rcgen = "0.8"
|
|
rustls = { git = "https://github.com/ctz/rustls", rev = "fee894f7e030" }
|
|
tokio = { version = "0.2.13", features = ["rt-core"] }
|
|
tracing = "0.1.10"
|
|
tracing-subscriber = { version = "0.2.5", default-features = false, features = ["env-filter", "fmt", "ansi", "chrono"]}
|
|
|
|
[[bin]]
|
|
name = "bulk"
|
|
path = "src/bulk.rs"
|