h3 0.0.1

An async HTTP/3 implementation.
Documentation
[package]
name = "h3"
version = "0.0.1"
authors = [
    "Sean McArthur <sean@seanmonstar.com>",
    "Jean-Christophe BEGUE <jc.begue@pm.me>",
]
license = "MIT"
edition = "2018"
documentation = "https://docs.rs/h3"
repository = "https://github.com/hyperium/h3"
readme = "../README.md"
description = "An async HTTP/3 implementation."
keywords = ["http3","quic","h3"]
categories = ["network-programming", "web-programming::http-client", "web-programming::http-server"]

[dependencies]
bytes = "1"
futures-util = { version = "0.3", default-features = false }
http = "0.2.3"
tokio = { version = "1", features = ["sync"] }
tracing = "0.1.18"
fastrand = "1.7.0"

[dev-dependencies]
assert_matches = "1.3.0"
futures-util = { version = "0.3", default-features = false, features = ["io"] }
proptest = "1"
quinn = { version = "0.8.0", default-features = false, features = [
    "tls-rustls",
    "ring",
] }
quinn-proto = { version = "0.8.0", default-features = false }
rcgen = "0.9"
rustls = "0.20"
tokio = { version = "1", features = ["rt", "macros", "io-util", "io-std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
    "fmt",
    "ansi",
    "env-filter",
    "time",
    "tracing-log",
] }