libp2p-quic 0.11.1

TLS based QUIC transport implementation for libp2p
Documentation
[dependencies.async-std]
optional = true
version = "1.12.0"

[dependencies.bytes]
version = "1.6.0"

[dependencies.futures]
version = "0.3.30"

[dependencies.futures-timer]
version = "3.0.3"

[dependencies.if-watch]
version = "3.2.0"

[dependencies.libp2p-core]
version = "0.42.0"

[dependencies.libp2p-identity]
version = "0.2.9"

[dependencies.libp2p-tls]
version = "0.5.0"

[dependencies.parking_lot]
version = "0.12.3"

[dependencies.quinn]
default-features = false
features = ["rustls", "futures-io"]
version = "0.11.2"

[dependencies.rand]
version = "0.8.5"

[dependencies.ring]
version = "0.17.8"

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

[dependencies.socket2]
version = "0.5.7"

[dependencies.thiserror]
version = "1.0.61"

[dependencies.tokio]
default-features = false
features = ["net", "rt", "time"]
optional = true
version = "1.38"

[dependencies.tracing]
version = "0.1.37"

[dev-dependencies.async-std]
features = ["attributes"]
version = "1.12.0"

[dev-dependencies.libp2p-identity]
features = ["rand"]
version = "0.2.9"

[dev-dependencies.libp2p-noise]
version = "0.45.0"

[dev-dependencies.libp2p-tcp]
features = ["async-io"]
version = "0.42.0"

[dev-dependencies.libp2p-yamux]
version = "0.46.0"

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

[dev-dependencies.tokio]
default-features = false
features = ["macros", "rt-multi-thread", "time"]
version = "1.38"

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

[features]
async-std = ["dep:async-std", "if-watch/smol", "quinn/runtime-async-std"]
tokio = ["dep:tokio", "if-watch/tokio", "quinn/runtime-tokio"]

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

[lints.clippy]
dbg_macro = "warn"
manual_let_else = "warn"
type_complexity = "allow"
unnecessary_wraps = "warn"
used_underscore_binding = "warn"

[lints.clippy.pedantic]
level = "allow"
priority = -1

[lints.rust]
unreachable_pub = "warn"

[package]
authors = ["Parity Technologies <admin@parity.io>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "TLS based QUIC transport implementation for libp2p"
edition = "2021"
license = "MIT"
name = "libp2p-quic"
readme = false
repository = "https://github.com/libp2p/rust-libp2p"
rust-version = "1.75.0"
version = "0.11.1"

[package.metadata.docs.rs]
all-features = true

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

[[test]]
name = "stream_compliance"
path = "tests/stream_compliance.rs"
required-features = ["async-std"]