netspeed-cli 0.6.0

Command-line interface for testing internet bandwidth using speedtest.net
Documentation
# cargo-deny configuration for dependency security auditing.
# Run: cargo deny check
# Docs: https://github.com/EmbarkStudios/cargo-deny

[graph]
targets = []
all-features = false

[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "warn"
# Transitive dependency via indicatif — no direct upgrade path available
# indicatif 0.17 still uses number_prefix; upgrading indicatif to 0.18+ would resolve
ignore = [
    "RUSTSEC-2025-0119",
]

[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "Unicode-DFS-2016",
    "OpenSSL",
    "Zlib",
    "MPL-2.0",
    "CDLA-Permissive-2.0",
]
confidence-threshold = 0.8

[bans]
multiple-versions = "warn"
wildcards = "allow"
deny = []
skip = []
skip-tree = [
    # Transitive: toml pulls in both winnow 0.7 and 1.0 via toml_parser
    { name = "winnow", version = "1.0.1" },
]

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