dquic 0.5.0

An IETF quic transport protocol implemented natively using async Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88.0"
name = "dquic"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An IETF quic transport protocol implemented natively using async Rust"
readme = "README.md"
keywords = [
    "async",
    "quic",
    "http3",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/genmeta/dquic"
resolver = "2"

[features]
datagram = ["qconnection/datagram"]
default = ["datagram"]
telemetry = ["qconnection/telemetry"]

[lib]
name = "dquic"
path = "src/lib.rs"

[[example]]
name = "echo-client"
path = "examples/echo-client.rs"

[[example]]
name = "echo-server"
path = "examples/echo-server.rs"

[[example]]
name = "http-client"
path = "examples/http-client.rs"

[[example]]
name = "http-server"
path = "examples/http-server.rs"

[[example]]
name = "traversal-client"
path = "examples/traversal-client.rs"

[[example]]
name = "traversal-server"
path = "examples/traversal-server.rs"

[[test]]
name = "auth"
path = "tests/auth.rs"

[[test]]
name = "echo"
path = "tests/echo.rs"

[[test]]
name = "traversal"
path = "tests/traversal.rs"

[dependencies.bytes]
version = "1"

[dependencies.dashmap]
version = "6"

[dependencies.derive_more]
version = "2"
features = ["deref"]

[dependencies.futures]
version = "0.3"

[dependencies.qconnection]
version = "0.5.0"

[dependencies.qresolve]
version = "0.5.0"

[dependencies.rustls]
version = "0.23"
features = ["std"]
default-features = false

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"

[dependencies.tokio-util]
version = "0.7"
features = ["rt"]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[dev-dependencies.http]
version = "1"

[dev-dependencies.indicatif]
version = "0.18"
features = ["tokio"]

[dev-dependencies.postcard]
version = "1"
features = ["use-std"]

[dev-dependencies.qevent]
version = "0.5.0"
features = ["telemetry"]

[dev-dependencies.qtraversal]
version = "0.5.0"
features = ["test-ttl"]

[dev-dependencies.rustls]
version = "0.23"
features = [
    "std",
    "ring",
]
default-features = false

[dev-dependencies.rustls-native-certs]
version = "0.8"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.tokio]
version = "1"
features = [
    "fs",
    "io-std",
    "rt-multi-thread",
]

[dev-dependencies.tokio-util]
version = "0.7"
features = ["rt"]

[dev-dependencies.tracing-appender]
version = "0.2"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "time",
]

[dev-dependencies.x509-parser]
version = "0.18"