[package]
edition = "2024"
name = "quicburn-shared"
version = "0.1.0"
authors = ["rayburncode@gmail.com"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazing fast QUIC implementation in Rust"
documentation = "https://docs.rs/quicburn"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/RayburnCode/quicburn"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
features = ["full"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "quicburn_shared"
crate-type = ["lib"]
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.anyhow]
version = "1.0.103"
[dependencies.quinn]
version = "0.11.11"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[lints.clippy]
all = "warn"
missing_docs = "allow"
module_name_repetitions = "allow"
must_use_candidate = "warn"
needless_pass_by_value = "warn"
pedantic = "warn"
unused_self = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1