[package]
edition = "2024"
rust-version = "1.95"
name = "quinn-shared-socket"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run a quinn::Endpoint on a UDP socket shared with other consumers."
readme = "README.md"
keywords = [
"quic",
"quinn",
"udp",
"socket",
"async",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/canmi21/vane"
[lib]
name = "quinn_shared_socket"
path = "src/lib.rs"
[dependencies.bytes]
version = "1"
[dependencies.quinn]
version = "0.11"
features = ["runtime-tokio"]
default-features = false
[dependencies.virtual-socket]
version = "0.0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"net",
"macros",
"rt",
"rt-multi-thread",
"time",
]
[lints.clippy]
cognitive_complexity = "warn"
doc_markdown = "allow"
similar_names = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "deny"