mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-24 03:58:19 +00:00
70 lines
1.6 KiB
TOML
70 lines
1.6 KiB
TOML
[package]
|
|
name = "quinn"
|
|
version = "0.4.0"
|
|
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>", "Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/djc/quinn"
|
|
description = "QUIC transport protocol implementation for Tokio"
|
|
readme = "../README.md"
|
|
keywords = ["quic"]
|
|
categories = [ "network-programming", "asynchronous" ]
|
|
workspace = ".."
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[badges]
|
|
codecov = { repository = "djc/quinn" }
|
|
maintenance = { status = "experimental" }
|
|
azure-devops = { project = "dochtman/Projects", pipeline = "Quinn", build = "1" }
|
|
|
|
[dependencies]
|
|
bytes = "0.4.7"
|
|
ct-logs = "0.6"
|
|
err-derive = "0.1.5"
|
|
fnv = "1.0.6"
|
|
futures = { package = "futures-preview", version = "0.3.0-alpha.18" }
|
|
libc = "0.2.49"
|
|
mio = "0.6"
|
|
proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.4.0" }
|
|
rustls = { version = "0.16", features = ["quic"] }
|
|
slog = "2.1"
|
|
tokio-net = { version = "0.2.0-alpha.5", default-features = false }
|
|
tokio-timer = "0.3.0-alpha.5"
|
|
tokio-io = "0.2.0-alpha.5"
|
|
tokio-executor = { version = "0.2.0-alpha.5", optional = true }
|
|
webpki = "0.21"
|
|
webpki-roots = "0.17"
|
|
|
|
[features]
|
|
default = ["simple"]
|
|
simple = ["tokio-executor"]
|
|
|
|
[dev-dependencies]
|
|
crc = "1.8.1"
|
|
criterion = "0.3"
|
|
directories = "2.0.0"
|
|
failure = "0.1"
|
|
rand = "0.7"
|
|
rcgen = "0.7"
|
|
slog-term = "2"
|
|
structopt = "0.3.0"
|
|
tokio = "0.2.0-alpha.5"
|
|
unwrap = "1.2.1"
|
|
url = "2"
|
|
|
|
[[example]]
|
|
name = "server"
|
|
|
|
[[example]]
|
|
name = "client"
|
|
|
|
[[example]]
|
|
name = "insecure_connection"
|
|
required-features = ["rustls/dangerous_configuration"]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|