-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "h3-quinn"
version = "0.0.10"
rust-version = "1.74"
authors = ["Jean-Christophe BEGUE <jc.begue@pm.me>"]
edition = "2021"
documentation = "https://docs.rs/h3-quinn"
repository = "https://github.com/hyperium/h3"
readme = "README.md"
description = "QUIC transport implementation based on Quinn."
keywords = ["http3", "quic", "h3"]
categories = ["network-programming", "web-programming"]
license = "MIT"
[dependencies]
h3 = { version = "0.0.8", path = "../h3" }
bytes = "1"
quinn = { version = "0.11.7", default-features = false, features = [
"futures-io",
] }
tokio-util = { version = "0.7.9" }
futures-util = { version = "0.3.28", default-features = false }
h3-datagram = {version = "0.0.2", path = "../h3-datagram", optional = true }
tracing = { version = "0.1.40", optional = true }
[features]
tracing = ["dep:tracing"]
datagram = ["dep:h3-datagram"]