network-protocol 1.2.0

Secure, high-performance protocol core with backpressure control, structured logging, timeout handling, TLS support, and comprehensive benchmarking for robust Rust networked applications and services.
Documentation
# cargo-deny configuration

# See https://embarkstudios.github.io/cargo-deny/



[advisories]

db-path = "~/.cargo/advisory-db"

db-urls = ["https://github.com/rustsec/advisory-db"]

ignore = [

    # Unmaintained: bincode 1.3.3 (RUSTSEC-2025-0141). We use it only for internal serialization; migration to an alternative (e.g., postcard/bitcode) is tracked separately.

    "RUSTSEC-2025-0141",

    # Unmaintained: rustls-pemfile 1.0.4 (RUSTSEC-2025-0134). rustls 0.21 still depends on it; upgrade path requires rustls-pki-types API migration.

    "RUSTSEC-2025-0134",

]



[licenses]

allow = [

    "MIT",

    "Apache-2.0",

    "Apache-2.0 WITH LLVM-exception",

    "BSD-2-Clause",

    "BSD-3-Clause",

    "ISC",

    "Unicode-3.0",

]

confidence-threshold = 0.8



[bans]

multiple-versions = "warn"

wildcards = "allow"

highlight = "all"



[sources]

unknown-registry = "deny"

unknown-git = "deny"

allow-registry = ["https://github.com/rust-lang/crates.io-index"]