broadcast-auth 0.2.1

Shared multi-scheme HTTP/RTSP auth: Basic/Digest (RFC 7235, RFC 2326 §14) via http-auth, Bearer (RFC 6750); one Credentials model + challenge->response helper for rtsp-runtime and multimux's HTTP clients.
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.86"
name = "broadcast-auth"
version = "0.2.1"
authors = ["Alex Fishlock <alex.fishlock@racingjag.com>"]
build = false
exclude = ["docs/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared multi-scheme HTTP/RTSP auth: Basic/Digest (RFC 7235, RFC 2326 §14) via http-auth, Bearer (RFC 6750); one Credentials model + challenge->response helper for rtsp-runtime and multimux's HTTP clients."
readme = "README.md"
keywords = [
    "auth",
    "http-auth",
    "digest",
    "basic-auth",
    "bearer",
]
categories = [
    "network-programming",
    "authentication",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fishloa/rust-broadcast"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

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

[[example]]
name = "client_respond"
path = "examples/client_respond.rs"

[[example]]
name = "server_verify"
path = "examples/server_verify.rs"

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

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

[dependencies.base64]
version = "0.22"

[dependencies.hmac]
version = "0.12"
default-features = false

[dependencies.http-auth]
version = "0.1"
features = [
    "basic-scheme",
    "digest-scheme",
]
default-features = false

[dependencies.md-5]
version = "0.10"

[dependencies.rand]
version = "0.8"

[dependencies.sha2]
version = "0.10"
default-features = false

[dependencies.subtle]
version = "2"
default-features = false

[dependencies.thiserror]
version = "2"

[dev-dependencies]