specters 4.2.2

Rust HTTP client with browser-like Chrome and Firefox fingerprints across TLS, HTTP/1.1, HTTP/2, HTTP/3, and WebSockets
Documentation
# Cargo deny configuration
# See https://github.com/EmbarkStudios/cargo-deny for documentation

# License checking
[licenses]
# Allow these licenses
allow = [
    "MIT",
    "Apache-2.0",
    "BSD-3-Clause",
    "BSD-2-Clause",
    "0BSD",
    "ISC",
    "Zlib",
    "Unlicense",
    "Unicode-3.0",
]

# Check for security vulnerabilities
[advisories]
# Check for unmaintained crates
unmaintained = "none"
# Check for yanked crates
yanked = "deny"

# Ban specific crates
[bans]
# Don't allow multiple versions of the same crate
multiple-versions = "warn"
deny = [
    { name = "url" },
    { name = "idna" },
    { name = "idna_adapter" },
    { name = "icu_collections" },
    { name = "icu_locale_core" },
    { name = "icu_normalizer" },
    { name = "icu_normalizer_data" },
    { name = "icu_properties" },
    { name = "icu_properties_data" },
    { name = "icu_provider" },
]

# Check for sources
[sources]
# Only allow crates from crates.io
unknown-registry = "deny"
# Allow git dependencies
unknown-git = "allow"