From 3b9b2ee0a0b9cd3f5e1ea1bca5fe8b58fe3eac58 Mon Sep 17 00:00:00 2001 From: devitway Date: Wed, 18 Mar 2026 11:20:22 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20repo=20cleanup=20=E2=80=94=20remove=20?= =?UTF-8?q?dead=20crates=20from=20workspace,=20stale=20files,=20duplicate?= =?UTF-8?q?=20assets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove nora-cli and nora-storage from workspace (stub crates, not used) - Remove root install.sh (duplicate of dist/install.sh) - Remove root logo.jpg (duplicate of ui/logo.jpg) - Remove committed SBOM .cdx.json files (generated by CI in release) - Remove stale .githooks/ (real hook is in .git/hooks/) - Update version in docs-ru to 0.2.32 - Add *.cdx.json to .gitignore --- .githooks/pre-commit | 142 - .gitignore | 6 + Cargo.lock | 6 +- Cargo.toml | 2 - dist/nora.cdx.json | 9031 -------------------------- docs-ru/admin-guide.md | 2 +- docs-ru/technical-spec.md | 2 +- docs-ru/user-guide.md | 2 +- install.sh | 98 - logo.jpg | Bin 6048 -> 0 bytes nora-cli/nora-cli.cdx.json | 5902 ----------------- nora-registry/nora-registry.cdx.json | 9031 -------------------------- nora-storage/nora-storage.cdx.json | 4050 ------------ 13 files changed, 12 insertions(+), 28262 deletions(-) delete mode 100755 .githooks/pre-commit delete mode 100644 dist/nora.cdx.json delete mode 100644 install.sh delete mode 100644 logo.jpg delete mode 100644 nora-cli/nora-cli.cdx.json delete mode 100644 nora-registry/nora-registry.cdx.json delete mode 100644 nora-storage/nora-storage.cdx.json diff --git a/.githooks/pre-commit b/.githooks/pre-commit deleted file mode 100755 index d95516a..0000000 --- a/.githooks/pre-commit +++ /dev/null @@ -1,142 +0,0 @@ -#!/bin/bash -# Pre-commit hook to prevent accidental commits of sensitive files -# Enable: git config core.hooksPath .githooks - -set -e - -RED='\033[0;31m' -YELLOW='\033[1;33m' -GREEN='\033[0;32m' -NC='\033[0m' - -# Allowed file extensions (whitelist) -ALLOWED_EXTENSIONS=( - '\.rs$' - '\.toml$' - '\.lock$' - '\.yml$' - '\.yaml$' - '\.json$' - '\.sh$' - '\.html$' - '\.css$' - '\.js$' - '\.gitignore$' - '\.dockerignore$' - 'Dockerfile$' - 'LICENSE$' - 'Makefile$' -) - -# Extensions that trigger a warning (not blocked) -WARN_EXTENSIONS=( - '\.md$' -) - -# Always blocked patterns (regardless of extension) -BLOCKED_PATTERNS=( - '\.env$' - '\.env\.' - '\.key$' - '\.pem$' - '\.p12$' - '\.pfx$' - '\.htpasswd$' - 'secret' - 'credential' - 'password' - '\.bak$' - '\.swp$' - '\.swo$' - 'node_modules/' - 'target/debug/' - '\.DS_Store' -) - -# Get staged files (only NEW files, not already tracked) -STAGED_FILES=$(git diff --cached --name-only --diff-filter=A) - -if [ -z "$STAGED_FILES" ]; then - # No new files, only modifications to existing - allow - exit 0 -fi - -# Build patterns -ALLOWED_PATTERN=$(IFS='|'; echo "${ALLOWED_EXTENSIONS[*]}") -WARN_PATTERN=$(IFS='|'; echo "${WARN_EXTENSIONS[*]}") -BLOCKED_PATTERN=$(IFS='|'; echo "${BLOCKED_PATTERNS[*]}") - -# Check for blocked patterns first -BLOCKED_FILES=$(echo "$STAGED_FILES" | grep -iE "$BLOCKED_PATTERN" || true) - -if [ -n "$BLOCKED_FILES" ]; then - echo -e "${RED}BLOCKED: Suspicious files detected in commit${NC}" - echo "" - echo -e "${YELLOW}Files:${NC}" - echo "$BLOCKED_FILES" | sed 's/^/ - /' - echo "" - echo "If intentional, use: git commit --no-verify" - exit 1 -fi - -# Check for files with unknown extensions -UNKNOWN_FILES="" -WARN_FILES="" - -while IFS= read -r file; do - [ -z "$file" ] && continue - - if echo "$file" | grep -qE "$BLOCKED_PATTERN"; then - continue # Already handled above - elif echo "$file" | grep -qE "$WARN_PATTERN"; then - WARN_FILES="$WARN_FILES$file"$'\n' - elif ! echo "$file" | grep -qE "$ALLOWED_PATTERN"; then - UNKNOWN_FILES="$UNKNOWN_FILES$file"$'\n' - fi -done <<< "$STAGED_FILES" - -# Warn about .md files -if [ -n "$WARN_FILES" ]; then - echo -e "${YELLOW}WARNING: Markdown files in commit:${NC}" - echo "$WARN_FILES" | sed '/^$/d' | sed 's/^/ - /' - echo "" -fi - -# Block unknown extensions -if [ -n "$UNKNOWN_FILES" ]; then - echo -e "${RED}BLOCKED: Files with unknown extensions:${NC}" - echo "$UNKNOWN_FILES" | sed '/^$/d' | sed 's/^/ - /' - echo "" - echo "Allowed extensions: rs, toml, lock, yml, yaml, json, sh, html, css, js, md" - echo "If intentional, use: git commit --no-verify" - exit 1 -fi - -# Check for large files (>5MB) -LARGE_FILES=$(echo "$STAGED_FILES" | while read f; do - if [ -f "$f" ]; then - size=$(stat -f%z "$f" 2>/dev/null || stat -c%s "$f" 2>/dev/null || echo 0) - if [ "$size" -gt 5242880 ]; then - echo "$f ($(numfmt --to=iec $size 2>/dev/null || echo "${size}B"))" - fi - fi -done) - -if [ -n "$LARGE_FILES" ]; then - echo -e "${YELLOW}WARNING: Large files (>5MB) in commit:${NC}" - echo "$LARGE_FILES" | sed 's/^/ - /' - echo "" -fi - -# Run cargo fmt check if Rust files changed -if git diff --cached --name-only | grep -q '\.rs$'; then - if command -v cargo &> /dev/null; then - if ! cargo fmt --check &> /dev/null; then - echo -e "${RED}BLOCKED: cargo fmt check failed${NC}" - echo "Run: cargo fmt" - exit 1 - fi - fi -fi - -exit 0 diff --git a/.gitignore b/.gitignore index 6e726dc..ec699b7 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,9 @@ docs/ ## Internal files .internal/ examples/ + +# Generated by CI +*.cdx.json + +# Dead crates (kept in repo for reference but excluded from workspace) +# nora-cli/ and nora-storage/ remain in git but are not built diff --git a/Cargo.lock b/Cargo.lock index 2d36242..ca6a578 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1269,7 +1269,7 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" [[package]] name = "nora-cli" -version = "0.2.31" +version = "0.2.32" dependencies = [ "clap", "flate2", @@ -1291,7 +1291,7 @@ dependencies = [ [[package]] name = "nora-registry" -version = "0.2.31" +version = "0.2.32" dependencies = [ "async-trait", "axum", @@ -1329,7 +1329,7 @@ dependencies = [ [[package]] name = "nora-storage" -version = "0.2.31" +version = "0.2.32" dependencies = [ "axum", "base64", diff --git a/Cargo.toml b/Cargo.toml index 4850a65..3b23f89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,6 @@ resolver = "2" members = [ "nora-registry", - "nora-storage", - "nora-cli", "fuzz", ] diff --git a/dist/nora.cdx.json b/dist/nora.cdx.json deleted file mode 100644 index 609320a..0000000 --- a/dist/nora.cdx.json +++ /dev/null @@ -1,9031 +0,0 @@ -{ - "bomFormat": "CycloneDX", - "specVersion": "1.3", - "version": 1, - "serialNumber": "urn:uuid:d2e312ad-4d9f-4dd4-b75b-4129f8978b11", - "metadata": { - "timestamp": "2026-03-16T13:29:38.108725911Z", - "tools": [ - { - "vendor": "CycloneDX", - "name": "cargo-cyclonedx", - "version": "0.5.8" - } - ], - "authors": [ - { - "name": "DevITWay", - "email": "devitway@gmail.com" - } - ], - "component": { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-registry#0.2.31", - "author": "DevITWay ", - "name": "nora-registry", - "version": "0.2.31", - "description": "Cloud-Native Artifact Registry - Fast, lightweight, multi-protocol", - "scope": "required", - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nora-registry@0.2.31?download_url=file://.", - "externalReferences": [ - { - "type": "website", - "url": "https://getnora.io" - }, - { - "type": "vcs", - "url": "https://github.com/getnora-io/nora" - } - ], - "components": [ - { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-registry#0.2.31 bin-target-0", - "name": "nora", - "version": "0.2.31", - "purl": "pkg:cargo/nora-registry@0.2.31?download_url=file://.#src/main.rs" - } - ] - }, - "properties": [ - { - "name": "cdx:rustc:sbom:target:triple", - "value": "x86_64-unknown-linux-gnu" - } - ] - }, - "components": [ - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "author": "Jonas Schievink , oyvindln ", - "name": "adler2", - "version": "2.0.1", - "description": "A simple clean-room implementation of the Adler-32 checksum", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - } - ], - "licenses": [ - { - "expression": "0BSD OR MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/adler2@2.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/adler2/" - }, - { - "type": "vcs", - "url": "https://github.com/oyvindln/adler2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "author": "Andrew Gallant ", - "name": "aho-corasick", - "version": "1.1.4", - "description": "Fast multiple substring searching.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/aho-corasick@1.1.4", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/BurntSushi/aho-corasick" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/aho-corasick" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "author": "Zakarum ", - "name": "allocator-api2", - "version": "0.2.21", - "description": "Mirror of Rust's allocator API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/allocator-api2@0.2.21", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/allocator-api2" - }, - { - "type": "website", - "url": "https://github.com/zakarumych/allocator-api2" - }, - { - "type": "vcs", - "url": "https://github.com/zakarumych/allocator-api2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "name": "anstream", - "version": "0.6.21", - "description": "IO stream adapters for writing colored text that will gracefully degrade according to your terminal's capabilities.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstream@0.6.21", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "name": "anstyle-parse", - "version": "0.2.7", - "description": "Parse ANSI Style Escapes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle-parse@0.2.7", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "name": "anstyle-query", - "version": "1.1.5", - "description": "Look up colored console capabilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle-query@1.1.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "name": "anstyle", - "version": "1.0.13", - "description": "ANSI text styling", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle@1.0.13", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "author": "David Tolnay ", - "name": "async-trait", - "version": "0.1.89", - "description": "Type erasure for async trait methods", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/async-trait@0.1.89", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/async-trait" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/async-trait" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "author": "Stjepan Glavina , Contributors to futures-rs", - "name": "atomic-waker", - "version": "1.1.2", - "description": "A synchronization primitive for task wakeup", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/atomic-waker@1.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/smol-rs/atomic-waker" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0", - "author": "Josh Stone ", - "name": "autocfg", - "version": "1.5.0", - "description": "Automatic cfg for Rust compiler features", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/autocfg@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/autocfg/" - }, - { - "type": "vcs", - "url": "https://github.com/cuviper/autocfg" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "name": "axum-core", - "version": "0.5.6", - "description": "Core types and traits for axum", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/axum-core@0.5.6", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/axum" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/axum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "name": "axum", - "version": "0.8.8", - "description": "Web framework that focuses on ergonomics and modularity", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/axum@0.8.8", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/axum" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/axum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "author": "Marshall Pierce ", - "name": "base64", - "version": "0.22.1", - "description": "encodes and decodes base64 as bytes or utf8", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/base64@0.22.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/base64" - }, - { - "type": "vcs", - "url": "https://github.com/marshallpierce/rust-base64" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bcrypt@0.19.0", - "author": "Vincent Prouillet ", - "name": "bcrypt", - "version": "0.19.0", - "description": "Easily hash and verify passwords using bcrypt", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "523ab528ce3a7ada6597f8ccf5bd8d85ebe26d5edf311cad4d1d3cfb2d357ac6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/bcrypt@0.19.0", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/Keats/rust-bcrypt" - }, - { - "type": "vcs", - "url": "https://github.com/Keats/rust-bcrypt" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "author": "The Rust Project Developers", - "name": "bitflags", - "version": "2.10.0", - "description": "A macro to generate structures which behave like bitflags. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/bitflags@2.10.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/bitflags" - }, - { - "type": "website", - "url": "https://github.com/bitflags/bitflags" - }, - { - "type": "vcs", - "url": "https://github.com/bitflags/bitflags" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "author": "RustCrypto Developers", - "name": "block-buffer", - "version": "0.10.4", - "description": "Buffer type for block processing of data", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/block-buffer@0.10.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/block-buffer" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#blowfish@0.9.1", - "author": "RustCrypto Developers", - "name": "blowfish", - "version": "0.9.1", - "description": "Blowfish block cipher", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/blowfish@0.9.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/blowfish" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/block-ciphers" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.19.1", - "author": "Nick Fitzgerald ", - "name": "bumpalo", - "version": "3.19.1", - "description": "A fast bump allocation arena for Rust.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/bumpalo@3.19.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/bumpalo" - }, - { - "type": "vcs", - "url": "https://github.com/fitzgen/bumpalo" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "author": "Andrew Gallant ", - "name": "byteorder", - "version": "1.5.0", - "description": "Library for reading/writing numbers in big-endian and little-endian.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/byteorder@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/byteorder" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/byteorder" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/byteorder" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "author": "Carl Lerche , Sean McArthur ", - "name": "bytes", - "version": "1.11.1", - "description": "Types and traits for working with bytes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/bytes@1.11.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/bytes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "author": "Alex Crichton ", - "name": "cc", - "version": "1.2.55", - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code. ", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cc@1.2.55", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cc" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/cc-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/cc-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "author": "Alex Crichton ", - "name": "cfg-if", - "version": "1.0.4", - "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cfg-if@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/cfg-if" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "author": "Zicklag ", - "name": "cfg_aliases", - "version": "0.2.1", - "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/cfg_aliases@0.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cfg_aliases" - }, - { - "type": "website", - "url": "https://github.com/katharostech/cfg_aliases" - }, - { - "type": "vcs", - "url": "https://github.com/katharostech/cfg_aliases" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "name": "chrono", - "version": "0.4.44", - "description": "Date and time library for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/chrono@0.4.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/chrono/" - }, - { - "type": "website", - "url": "https://github.com/chronotope/chrono" - }, - { - "type": "vcs", - "url": "https://github.com/chronotope/chrono" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "author": "RustCrypto Developers", - "name": "cipher", - "version": "0.4.4", - "description": "Traits for describing block ciphers and stream ciphers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cipher@0.4.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cipher" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "name": "clap", - "version": "4.5.60", - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap@4.5.60", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "name": "clap_builder", - "version": "4.5.60", - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_builder@4.5.60", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55", - "name": "clap_derive", - "version": "4.5.55", - "description": "Parse command line argument by defining a struct, derive crate.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_derive@4.5.55", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "name": "clap_lex", - "version": "1.0.0", - "description": "Minimal, flexible command line parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_lex@1.0.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "name": "colorchoice", - "version": "1.0.4", - "description": "Global override of color control", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/colorchoice@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "name": "console", - "version": "0.16.2", - "description": "A terminal and console abstraction for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/console@0.16.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/console" - }, - { - "type": "website", - "url": "https://github.com/console-rs/console" - }, - { - "type": "vcs", - "url": "https://github.com/console-rs/console" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "author": "RustCrypto Developers", - "name": "cpufeatures", - "version": "0.2.17", - "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cpufeatures@0.2.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cpufeatures" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "author": "Sam Rijs , Alex Crichton ", - "name": "crc32fast", - "version": "1.5.0", - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crc32fast@1.5.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/srijs/rust-crc32fast" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "name": "crossbeam-utils", - "version": "0.8.21", - "description": "Utilities for concurrent programming", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crossbeam-utils@0.8.21", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils" - }, - { - "type": "vcs", - "url": "https://github.com/crossbeam-rs/crossbeam" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "author": "RustCrypto Developers", - "name": "crypto-common", - "version": "0.1.7", - "description": "Common cryptographic traits", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crypto-common@0.1.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/crypto-common" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "author": "Acrimon ", - "name": "dashmap", - "version": "6.1.0", - "description": "Blazing fast concurrent HashMap for Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/dashmap@6.1.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/dashmap" - }, - { - "type": "website", - "url": "https://github.com/xacrimon/dashmap" - }, - { - "type": "vcs", - "url": "https://github.com/xacrimon/dashmap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "author": "RustCrypto Developers", - "name": "digest", - "version": "0.10.7", - "description": "Traits for cryptographic hash functions and message authentication codes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/digest@0.10.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/digest" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "author": "Jane Lusby ", - "name": "displaydoc", - "version": "0.2.5", - "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/displaydoc@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/displaydoc" - }, - { - "type": "website", - "url": "https://github.com/yaahc/displaydoc" - }, - { - "type": "vcs", - "url": "https://github.com/yaahc/displaydoc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "name": "equivalent", - "version": "1.0.2", - "description": "Traits for key comparison in maps.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/equivalent@1.0.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/equivalent" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "author": "Chris Wong , Dan Gohman ", - "name": "errno", - "version": "0.3.14", - "description": "Cross-platform interface to the `errno` variable.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/errno@0.3.14", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/errno" - }, - { - "type": "vcs", - "url": "https://github.com/lambda-fairy/rust-errno" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "author": "Alex Crichton ", - "name": "filetime", - "version": "0.2.27", - "description": "Platform-agnostic accessors of timestamps in File metadata ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/filetime@0.2.27", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/filetime" - }, - { - "type": "website", - "url": "https://github.com/alexcrichton/filetime" - }, - { - "type": "vcs", - "url": "https://github.com/alexcrichton/filetime" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "name": "find-msvc-tools", - "version": "0.1.9", - "description": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/find-msvc-tools@0.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/find-msvc-tools" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/cc-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "author": "Alex Crichton , Josh Triplett ", - "name": "flate2", - "version": "1.1.9", - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/flate2@1.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/flate2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/flate2-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/flate2-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "author": "Alex Crichton ", - "name": "fnv", - "version": "1.0.7", - "description": "Fowler–Noll–Vo hash function", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/fnv@1.0.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://doc.servo.org/fnv/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-fnv" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "author": "Orson Peters ", - "name": "foldhash", - "version": "0.2.0", - "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/foldhash@0.2.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/orlp/foldhash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "author": "The rust-url developers", - "name": "form_urlencoded", - "version": "1.2.2", - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/form_urlencoded@1.2.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#forwarded-header-value@0.1.1", - "author": "James Brown ", - "name": "forwarded-header-value", - "version": "0.1.1", - "description": "Parser for values from the Forwarded header (RFC 7239)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/forwarded-header-value@0.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/EasyPost/rust-forwarded-header-value" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "name": "futures-channel", - "version": "0.3.31", - "description": "Channels for asynchronous communication using futures-rs. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-channel@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "name": "futures-core", - "version": "0.3.31", - "description": "The core traits and types in for the `futures` library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-core@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "name": "futures-io", - "version": "0.3.31", - "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-io@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "name": "futures-macro", - "version": "0.3.31", - "description": "The futures-rs procedural macro implementations. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-macro@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "name": "futures-sink", - "version": "0.3.31", - "description": "The asynchronous `Sink` trait for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-sink@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "name": "futures-task", - "version": "0.3.31", - "description": "Tools for working with tasks. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-task@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-timer@3.0.3", - "author": "Alex Crichton ", - "name": "futures-timer", - "version": "3.0.3", - "description": "Timeouts for futures. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-timer@3.0.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/futures-timer" - }, - { - "type": "website", - "url": "https://github.com/async-rs/futures-timer" - }, - { - "type": "vcs", - "url": "https://github.com/async-rs/futures-timer" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "name": "futures-util", - "version": "0.3.31", - "description": "Common utilities and extension traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-util@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "author": "Bartłomiej Kamiński , Aaron Trent ", - "name": "generic-array", - "version": "0.14.7", - "description": "Generic types implementing functionality of arrays", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/generic-array@0.14.7", - "externalReferences": [ - { - "type": "documentation", - "url": "http://fizyk20.github.io/generic-array/generic_array/" - }, - { - "type": "vcs", - "url": "https://github.com/fizyk20/generic-array.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.2.17", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.2.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.3.4", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.3.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.4.1", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.4.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "author": "Andreas Fuchs ", - "name": "governor", - "version": "0.10.4", - "description": "A rate-limiting implementation in Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9efcab3c1958580ff1f25a2a41be1668f7603d849bb63af523b208a3cc1223b8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/governor@0.10.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/governor" - }, - { - "type": "website", - "url": "https://github.com/boinkor-net/governor" - }, - { - "type": "vcs", - "url": "https://github.com/boinkor-net/governor.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "author": "Carl Lerche , Sean McArthur ", - "name": "h2", - "version": "0.4.13", - "description": "An HTTP/2 client and server", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/h2@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/h2" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/h2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "author": "Amanieu d'Antras ", - "name": "hashbrown", - "version": "0.14.5", - "description": "A Rust port of Google's SwissTable hash map", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hashbrown@0.14.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/hashbrown" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "author": "Amanieu d'Antras ", - "name": "hashbrown", - "version": "0.16.1", - "description": "A Rust port of Google's SwissTable hash map", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hashbrown@0.16.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/hashbrown" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "name": "heck", - "version": "0.5.0", - "description": "heck is a case conversion library.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/heck@0.5.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/withoutboats/heck" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "author": "KokaKiwi ", - "name": "hex", - "version": "0.4.3", - "description": "Encoding and decoding data into/from hexadecimal representation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hex@0.4.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hex/" - }, - { - "type": "vcs", - "url": "https://github.com/KokaKiwi/rust-hex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "author": "RustCrypto Developers", - "name": "hmac", - "version": "0.12.1", - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hmac@0.12.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hmac" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/MACs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body-util", - "version": "0.1.3", - "description": "Combinators and adapters for HTTP request or response bodies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body-util@0.1.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body-util" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body", - "version": "1.0.1", - "description": "Trait representing an asynchronous, streaming, HTTP request or response body. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body@1.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "author": "Alex Crichton , Carl Lerche , Sean McArthur ", - "name": "http", - "version": "1.4.0", - "description": "A set of types for representing HTTP requests and responses. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/http@1.4.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "author": "Sean McArthur ", - "name": "httparse", - "version": "1.10.1", - "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httparse@1.10.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/httparse" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/httparse" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "author": "Pyfisch ", - "name": "httpdate", - "version": "1.0.3", - "description": "HTTP date parsing and formatting", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httpdate@1.0.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/pyfisch/httpdate" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "name": "hyper-rustls", - "version": "0.27.7", - "description": "Rustls+hyper integration for pure rust HTTPS", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR ISC OR MIT" - } - ], - "purl": "pkg:cargo/hyper-rustls@0.27.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-rustls/" - }, - { - "type": "website", - "url": "https://github.com/rustls/hyper-rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/hyper-rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-timeout@0.5.2", - "author": "Herman J. Radtke III ", - "name": "hyper-timeout", - "version": "0.5.2", - "description": "A connect, read and write timeout aware connector to be used with hyper Client.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hyper-timeout@0.5.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://github.com/hjr3/hyper-timeout" - }, - { - "type": "website", - "url": "https://github.com/hjr3/hyper-timeout" - }, - { - "type": "vcs", - "url": "https://github.com/hjr3/hyper-timeout" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "author": "Sean McArthur ", - "name": "hyper-util", - "version": "0.1.19", - "description": "hyper utilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper-util@0.1.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-util" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper-util" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "author": "Sean McArthur ", - "name": "hyper", - "version": "1.8.1", - "description": "A protective and efficient HTTP library for all.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper@1.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "author": "Andrew Straw , René Kijewski , Ryan Lopopolo ", - "name": "iana-time-zone", - "version": "0.1.65", - "description": "get the IANA time zone for the current system", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/iana-time-zone@0.1.65", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/strawlab/iana-time-zone" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_collections", - "version": "2.1.1", - "description": "Collection of API for use in ICU libraries.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_collections@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_locale_core", - "version": "2.1.1", - "description": "API for managing Unicode Language and Locale Identifiers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_locale_core@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_normalizer", - "version": "2.1.1", - "description": "API for normalizing text into Unicode Normalization Forms", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_normalizer@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_normalizer_data", - "version": "2.1.1", - "description": "Data for the icu_normalizer crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_normalizer_data@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "author": "The ICU4X Project Developers", - "name": "icu_properties", - "version": "2.1.2", - "description": "Definitions for Unicode properties", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_properties@2.1.2", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "author": "The ICU4X Project Developers", - "name": "icu_properties_data", - "version": "2.1.2", - "description": "Data for the icu_properties crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_properties_data@2.1.2", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_provider", - "version": "2.1.1", - "description": "Trait and struct definitions for the ICU data provider", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_provider@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "author": "The rust-url developers", - "name": "idna", - "version": "1.1.0", - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/idna@1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "author": "The rust-url developers", - "name": "idna_adapter", - "version": "1.2.1", - "description": "Back end adapter for idna", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/idna_adapter@1.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/idna_adapter/latest/idna_adapter/" - }, - { - "type": "website", - "url": "https://docs.rs/crate/idna_adapter/latest" - }, - { - "type": "vcs", - "url": "https://github.com/hsivonen/idna_adapter" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "name": "indexmap", - "version": "2.13.0", - "description": "A hash table with consistent order and fast iteration.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/indexmap@2.13.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indexmap/" - }, - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/indexmap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "name": "indicatif", - "version": "0.18.4", - "description": "A progress bar and cli reporting library for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/indicatif@0.18.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indicatif" - }, - { - "type": "vcs", - "url": "https://github.com/console-rs/indicatif" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "author": "RustCrypto Developers", - "name": "inout", - "version": "0.1.4", - "description": "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/inout@0.1.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/inout" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "author": "Kris Price ", - "name": "ipnet", - "version": "2.11.0", - "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ipnet@2.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ipnet" - }, - { - "type": "vcs", - "url": "https://github.com/krisprice/ipnet" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "author": "YOSHIOKA Takuma ", - "name": "iri-string", - "version": "0.7.10", - "description": "IRI as string types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/iri-string@0.7.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/lo48576/iri-string" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "name": "is_terminal_polyfill", - "version": "1.70.2", - "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/is_terminal_polyfill@1.70.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/polyfill-rs/is_terminal_polyfill" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "author": "David Tolnay ", - "name": "itoa", - "version": "1.0.17", - "description": "Fast integer primitive to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/itoa@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/itoa" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/itoa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "author": "Marvin Löbel ", - "name": "lazy_static", - "version": "1.5.0", - "description": "A macro for declaring lazily evaluated statics in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lazy_static@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/lazy_static" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/lazy-static.rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "author": "The Rust Project Developers", - "name": "libc", - "version": "0.2.182", - "description": "Raw FFI bindings to platform libraries like libc.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/libc@0.2.182", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/libc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1", - "author": "Dan Gohman ", - "name": "linux-raw-sys", - "version": "0.12.1", - "description": "Generated bindings for Linux's userspace API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/linux-raw-sys@0.12.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/linux-raw-sys" - }, - { - "type": "vcs", - "url": "https://github.com/sunfishcode/linux-raw-sys" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "author": "The ICU4X Project Developers", - "name": "litemap", - "version": "0.8.1", - "description": "A key-value Map implementation based on a flat, sorted Vec.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/litemap@0.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/litemap" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "author": "Amanieu d'Antras ", - "name": "lock_api", - "version": "0.4.14", - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lock_api@0.4.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "author": "The Rust Project Developers", - "name": "log", - "version": "0.4.29", - "description": "A lightweight logging facade for Rust ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/log@0.4.29", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/log" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/log" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "author": "Benjamin Saunders ", - "name": "lru-slab", - "version": "0.1.2", - "description": "Pre-allocated storage with constant-time LRU tracking", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0 OR Zlib" - } - ], - "purl": "pkg:cargo/lru-slab@0.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Ralith/lru-slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "author": "Eliza Weisman ", - "name": "matchers", - "version": "0.2.0", - "description": "Regex matching on character and byte streams. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/matchers@0.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/matchers/" - }, - { - "type": "website", - "url": "https://github.com/hawkw/matchers" - }, - { - "type": "vcs", - "url": "https://github.com/hawkw/matchers" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "author": "Ibraheem Ahmed ", - "name": "matchit", - "version": "0.8.4", - "description": "A high performance, zero-copy URL router.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" - } - ], - "licenses": [ - { - "expression": "MIT AND BSD-3-Clause" - } - ], - "purl": "pkg:cargo/matchit@0.8.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/ibraheemdev/matchit" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "author": "Andrew Gallant , bluss", - "name": "memchr", - "version": "2.7.6", - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/memchr@2.7.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/memchr/" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/memchr" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/memchr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "author": "Sean McArthur ", - "name": "mime", - "version": "0.3.17", - "description": "Strongly Typed Mimes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/mime@0.3.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/mime" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/mime" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5", - "author": "Austin Bonander ", - "name": "mime_guess", - "version": "2.0.5", - "description": "A simple crate for detection of a file's MIME type by its extension.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/mime_guess@2.0.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/mime_guess/" - }, - { - "type": "vcs", - "url": "https://github.com/abonander/mime_guess" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "author": "Frommi , oyvindln , Rich Geldreich richgel99@gmail.com", - "name": "miniz_oxide", - "version": "0.8.9", - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" - } - ], - "licenses": [ - { - "expression": "MIT OR Zlib OR Apache-2.0" - } - ], - "purl": "pkg:cargo/miniz_oxide@0.8.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/miniz_oxide" - }, - { - "type": "website", - "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide" - }, - { - "type": "vcs", - "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "author": "Carl Lerche , Thomas de Zeeuw , Tokio Contributors ", - "name": "mio", - "version": "1.1.1", - "description": "Lightweight non-blocking I/O.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/mio@1.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/mio" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/mio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nonempty@0.7.0", - "author": "Alexis Sellier ", - "name": "nonempty", - "version": "0.7.0", - "description": "Correct by construction non-empty vector", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nonempty@0.7.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/cloudhead/nonempty" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nonzero_ext@0.3.0", - "author": "Andreas Fuchs ", - "name": "nonzero_ext", - "version": "0.3.0", - "description": "Extensions and additional traits for non-zero integer types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/nonzero_ext@0.3.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/nonzero_ext" - }, - { - "type": "vcs", - "url": "https://github.com/antifuchs/nonzero_ext" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "author": "ogham@bsago.me, Ryan Scheel (Havvy) , Josh Triplett , The Nushell Project Developers", - "name": "nu-ansi-term", - "version": "0.50.3", - "description": "Library for ANSI terminal colors and styles (bold, underline)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nu-ansi-term@0.50.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/nushell/nu-ansi-term" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "author": "The Rust Project Developers", - "name": "num-traits", - "version": "0.2.19", - "description": "Numeric traits for generic mathematics", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/num-traits@0.2.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/num-traits" - }, - { - "type": "website", - "url": "https://github.com/rust-num/num-traits" - }, - { - "type": "vcs", - "url": "https://github.com/rust-num/num-traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "author": "Aleksey Kladov ", - "name": "once_cell", - "version": "1.21.3", - "description": "Single assignment cells and lazy values.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/once_cell@1.21.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/once_cell" - }, - { - "type": "vcs", - "url": "https://github.com/matklad/once_cell" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "author": "Amanieu d'Antras ", - "name": "parking_lot", - "version": "0.12.5", - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot@0.12.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "author": "Amanieu d'Antras ", - "name": "parking_lot_core", - "version": "0.9.12", - "description": "An advanced API for creating custom synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot_core@0.9.12", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "author": "The rust-url developers", - "name": "percent-encoding", - "version": "2.3.2", - "description": "Percent encoding and decoding", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/percent-encoding@2.3.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "name": "pin-project-internal", - "version": "1.1.10", - "description": "Implementation detail of the `pin-project` crate. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project-internal@1.1.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "name": "pin-project-lite", - "version": "0.2.16", - "description": "A lightweight version of pin-project written with declarative macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project-lite@0.2.16", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project-lite" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "name": "pin-project", - "version": "1.1.10", - "description": "A crate for safe and ergonomic pin-projection. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project@1.1.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "author": "Josef Brandl ", - "name": "pin-utils", - "version": "0.1.0", - "description": "Utilities for pinning ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/pin-utils@0.1.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/pin-utils" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/pin-utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "name": "portable-atomic", - "version": "1.13.0", - "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/portable-atomic@1.13.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/portable-atomic" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "author": "The ICU4X Project Developers", - "name": "potential_utf", - "version": "0.1.4", - "description": "Unvalidated string and character types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/potential_utf@0.1.4", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "author": "The CryptoCorrosion Contributors", - "name": "ppv-lite86", - "version": "0.2.21", - "description": "Cross-platform cryptography-oriented low-level SIMD library.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ppv-lite86@0.2.21", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/cryptocorrosion/cryptocorrosion" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "author": "David Tolnay , Alex Crichton ", - "name": "proc-macro2", - "version": "1.0.106", - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/proc-macro2@1.0.106", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/proc-macro2" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/proc-macro2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#prometheus@0.14.0", - "author": "overvenus@gmail.com, siddontang@gmail.com, vistaswx@gmail.com", - "name": "prometheus", - "version": "0.14.0", - "description": "Prometheus instrumentation library for Rust applications.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/prometheus@0.14.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/prometheus" - }, - { - "type": "website", - "url": "https://github.com/tikv/rust-prometheus" - }, - { - "type": "vcs", - "url": "https://github.com/tikv/rust-prometheus" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf-support@3.7.2", - "author": "Stepan Koltsov ", - "name": "protobuf-support", - "version": "3.7.2", - "description": "Code supporting protobuf implementation. None of code in this crate is public API. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/protobuf-support@3.7.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://github.com/stepancheg/rust-protobuf/blob/master/README.md" - }, - { - "type": "website", - "url": "https://github.com/stepancheg/rust-protobuf/" - }, - { - "type": "vcs", - "url": "https://github.com/stepancheg/rust-protobuf/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf@3.7.2", - "author": "Stepan Koltsov ", - "name": "protobuf", - "version": "3.7.2", - "description": "Rust implementation of Google protocol buffers ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/protobuf@3.7.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://github.com/stepancheg/rust-protobuf/blob/master/README.md" - }, - { - "type": "website", - "url": "https://github.com/stepancheg/rust-protobuf/" - }, - { - "type": "vcs", - "url": "https://github.com/stepancheg/rust-protobuf/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quanta@0.12.6", - "author": "Toby Lawrence ", - "name": "quanta", - "version": "0.12.6", - "description": "high-speed timing library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/quanta@0.12.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quanta" - }, - { - "type": "website", - "url": "https://github.com/metrics-rs/quanta" - }, - { - "type": "vcs", - "url": "https://github.com/metrics-rs/quanta" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "name": "quinn-proto", - "version": "0.11.14", - "description": "State machine for the QUIC transport protocol", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn-proto@0.11.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "name": "quinn-udp", - "version": "0.5.14", - "description": "UDP sockets with ECN information for the QUIC transport protocol", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn-udp@0.5.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "name": "quinn", - "version": "0.11.9", - "description": "Versatile QUIC transport protocol implementation", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn@0.11.9", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "author": "David Tolnay ", - "name": "quote", - "version": "1.0.44", - "description": "Quasi-quoting macro quote!(...)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quote@1.0.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quote/" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/quote" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "author": "The Rand Project Developers, The Rust Project Developers", - "name": "rand", - "version": "0.9.2", - "description": "Random number generators and other randomness functionality. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand@0.9.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "author": "The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors", - "name": "rand_chacha", - "version": "0.9.0", - "description": "ChaCha random number generator ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand_chacha@0.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand_chacha" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5", - "author": "The Rand Project Developers, The Rust Project Developers", - "name": "rand_core", - "version": "0.9.5", - "description": "Core random number generator traits and tools for implementation. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand_core@0.9.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand_core" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#raw-cpuid@11.6.0", - "author": "Gerd Zellweger ", - "name": "raw-cpuid", - "version": "11.6.0", - "description": "A library to parse the x86 CPUID instruction, written in rust with no external dependencies. The implementation closely resembles the Intel CPUID manual description. The library does only depend on libcore.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/raw-cpuid@11.6.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/raw-cpuid/" - }, - { - "type": "website", - "url": "https://github.com/gz/rust-cpuid" - }, - { - "type": "vcs", - "url": "https://github.com/gz/rust-cpuid" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex-automata", - "version": "0.4.13", - "description": "Automata construction and matching using regular expressions.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex-automata@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex-automata" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex/tree/master/regex-automata" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex-syntax", - "version": "0.8.8", - "description": "A regular expression parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex-syntax@0.8.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex-syntax" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex/tree/master/regex-syntax" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex", - "version": "1.12.2", - "description": "An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex@1.12.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "author": "Sean McArthur ", - "name": "reqwest", - "version": "0.12.28", - "description": "higher level HTTP client library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/reqwest@0.12.28", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/reqwest" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/reqwest" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "name": "ring", - "version": "0.17.14", - "description": "An experiment.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 AND ISC" - } - ], - "purl": "pkg:cargo/ring@0.17.14", - "externalReferences": [ - { - "type": "other", - "url": "ring_core_0_17_14_" - }, - { - "type": "vcs", - "url": "https://github.com/briansmith/ring" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.11.0", - "author": "pyrossh", - "name": "rust-embed-impl", - "version": "8.11.0", - "description": "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/rust-embed-impl@8.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rust-embed" - }, - { - "type": "vcs", - "url": "https://pyrossh.dev/repos/rust-embed" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "author": "pyrossh", - "name": "rust-embed-utils", - "version": "8.11.0", - "description": "Utilities for rust-embed", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/rust-embed-utils@8.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rust-embed" - }, - { - "type": "vcs", - "url": "https://pyrossh.dev/repos/rust-embed" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.11.0", - "author": "pyrossh", - "name": "rust-embed", - "version": "8.11.0", - "description": "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/rust-embed@8.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rust-embed" - }, - { - "type": "vcs", - "url": "https://pyrossh.dev/repos/rust-embed" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "author": "The Rust Project Developers", - "name": "rustc-hash", - "version": "2.1.1", - "description": "A speedy, non-cryptographic hashing algorithm used by rustc", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/rustc-hash@2.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/rustc-hash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4", - "author": "Dan Gohman , Jakub Konka ", - "name": "rustix", - "version": "1.1.4", - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/rustix@1.1.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rustix" - }, - { - "type": "vcs", - "url": "https://github.com/bytecodealliance/rustix" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "name": "rustls-pki-types", - "version": "1.14.0", - "description": "Shared types for the rustls PKI ecosystem", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rustls-pki-types@1.14.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rustls-pki-types" - }, - { - "type": "website", - "url": "https://github.com/rustls/pki-types" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/pki-types" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "name": "rustls-webpki", - "version": "0.103.9", - "description": "Web PKI X.509 Certificate Verification.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/rustls-webpki@0.103.9", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rustls/webpki" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "name": "rustls", - "version": "0.23.36", - "description": "Rustls is a modern TLS library written in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR ISC OR MIT" - } - ], - "purl": "pkg:cargo/rustls@0.23.36", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/rustls/rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "author": "David Tolnay ", - "name": "ryu", - "version": "1.0.22", - "description": "Fast floating point to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR BSL-1.0" - } - ], - "purl": "pkg:cargo/ryu@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ryu" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/ryu" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "author": "Andrew Gallant ", - "name": "same-file", - "version": "1.0.6", - "description": "A simple crate for determining whether two file paths point to the same file. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/same-file@1.0.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/same-file" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/same-file" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/same-file" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "author": "bluss", - "name": "scopeguard", - "version": "1.2.0", - "description": "A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/scopeguard@1.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/scopeguard/" - }, - { - "type": "vcs", - "url": "https://github.com/bluss/scopeguard" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde", - "version": "1.0.228", - "description": "A generic serialization/deserialization framework", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_core", - "version": "1.0.228", - "description": "Serde traits only, with no support for derive -- use the `serde` crate instead", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_core@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_core" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_derive", - "version": "1.0.228", - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_derive@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://serde.rs/derive.html" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_json", - "version": "1.0.149", - "description": "A JSON serialization file format", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_json@1.0.149", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_json" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/json" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "author": "David Tolnay ", - "name": "serde_path_to_error", - "version": "0.1.20", - "description": "Path to the element that failed to deserialize", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_path_to_error@0.1.20", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_path_to_error" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/path-to-error" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "name": "serde_spanned", - "version": "1.0.4", - "description": "Serde-compatible spanned Value", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_spanned@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "author": "Anthony Ramine ", - "name": "serde_urlencoded", - "version": "0.7.1", - "description": "`x-www-form-urlencoded` meets Serde", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_urlencoded@0.7.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/" - }, - { - "type": "vcs", - "url": "https://github.com/nox/serde_urlencoded" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "author": "RustCrypto Developers", - "name": "sha2", - "version": "0.10.9", - "description": "Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/sha2@0.10.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sha2" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/hashes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "author": "Eliza Weisman ", - "name": "sharded-slab", - "version": "0.1.7", - "description": "A lock-free concurrent slab. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/sharded-slab@0.1.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sharded-slab/" - }, - { - "type": "website", - "url": "https://github.com/hawkw/sharded-slab" - }, - { - "type": "vcs", - "url": "https://github.com/hawkw/sharded-slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "author": "comex , Fenhl , Adrian Taylor , Alex Touchet , Daniel Parks , Garrett Berg ", - "name": "shlex", - "version": "1.3.0", - "description": "Split a string into shell words, like Python's shlex.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/shlex@1.3.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/comex/rust-shlex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "author": "Michal 'vorner' Vaner , Masaki Hara ", - "name": "signal-hook-registry", - "version": "1.4.8", - "description": "Backend crate for signal-hook", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/signal-hook-registry@1.4.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/signal-hook-registry" - }, - { - "type": "vcs", - "url": "https://github.com/vorner/signal-hook" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8", - "author": "Marvin Countryman ", - "name": "simd-adler32", - "version": "0.3.8", - "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/simd-adler32@0.3.8", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/mcountryman/simd-adler32" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "author": "Carl Lerche ", - "name": "slab", - "version": "0.4.11", - "description": "Pre-allocated storage for a uniform data type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/slab@0.4.11", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "author": "The Servo Project Developers", - "name": "smallvec", - "version": "1.15.1", - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/smallvec@1.15.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/smallvec/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-smallvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "author": "Alex Crichton , Thomas de Zeeuw ", - "name": "socket2", - "version": "0.6.2", - "description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/socket2@0.6.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/socket2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/socket2" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/socket2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#spinning_top@0.3.0", - "author": "Philipp Oppermann ", - "name": "spinning_top", - "version": "0.3.0", - "description": "A simple spinlock crate based on the abstractions provided by `lock_api`.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/spinning_top@0.3.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-osdev/spinning_top" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "author": "Robert Grosse ", - "name": "stable_deref_trait", - "version": "1.2.1", - "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/stable_deref_trait@1.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/stable_deref_trait/1.2.1/stable_deref_trait" - }, - { - "type": "vcs", - "url": "https://github.com/storyyeller/stable_deref_trait" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "author": "Danny Guo , maxbachmann ", - "name": "strsim", - "version": "0.11.1", - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/strsim@0.11.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/strsim/" - }, - { - "type": "website", - "url": "https://github.com/rapidfuzz/strsim-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rapidfuzz/strsim-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "author": "Isis Lovecruft , Henry de Valence ", - "name": "subtle", - "version": "2.6.1", - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - } - ], - "licenses": [ - { - "expression": "BSD-3-Clause" - } - ], - "purl": "pkg:cargo/subtle@2.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/subtle" - }, - { - "type": "website", - "url": "https://dalek.rs/" - }, - { - "type": "vcs", - "url": "https://github.com/dalek-cryptography/subtle" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "author": "David Tolnay ", - "name": "syn", - "version": "2.0.114", - "description": "Parser for Rust source code", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/syn@2.0.114", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/syn" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/syn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "author": "Actyx AG ", - "name": "sync_wrapper", - "version": "1.0.2", - "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/sync_wrapper@1.0.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "website", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "vcs", - "url": "https://github.com/Actyx/sync_wrapper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2", - "author": "Nika Layzell ", - "name": "synstructure", - "version": "0.13.2", - "description": "Helper methods and macros for custom derives", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/synstructure@0.13.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/synstructure" - }, - { - "type": "vcs", - "url": "https://github.com/mystor/synstructure" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "author": "Alex Crichton ", - "name": "tar", - "version": "0.4.44", - "description": "A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ensure that the entire contents are never required to be entirely resident in memory all at once. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tar@0.4.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tar" - }, - { - "type": "website", - "url": "https://github.com/alexcrichton/tar-rs" - }, - { - "type": "vcs", - "url": "https://github.com/alexcrichton/tar-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "author": "David Tolnay ", - "name": "thiserror-impl", - "version": "1.0.69", - "description": "Implementation detail of the `thiserror` crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror-impl@1.0.69", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18", - "author": "David Tolnay ", - "name": "thiserror-impl", - "version": "2.0.18", - "description": "Implementation detail of the `thiserror` crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror-impl@2.0.18", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "author": "David Tolnay ", - "name": "thiserror", - "version": "1.0.69", - "description": "derive(Error)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror@1.0.69", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thiserror" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "author": "David Tolnay ", - "name": "thiserror", - "version": "2.0.18", - "description": "derive(Error)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror@2.0.18", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thiserror" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "author": "Amanieu d'Antras ", - "name": "thread_local", - "version": "1.1.9", - "description": "Per-object thread-local storage", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thread_local@1.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thread_local/" - }, - { - "type": "vcs", - "url": "https://github.com/Amanieu/thread_local-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "author": "The ICU4X Project Developers", - "name": "tinystr", - "version": "0.8.2", - "description": "A small ASCII-only bounded length string representation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/tinystr@0.8.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "author": "Lokathor ", - "name": "tinyvec", - "version": "1.10.0", - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" - } - ], - "licenses": [ - { - "expression": "Zlib OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/tinyvec@1.10.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Lokathor/tinyvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "author": "Soveu ", - "name": "tinyvec_macros", - "version": "0.1.1", - "description": "Some macros for tiny containers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0 OR Zlib" - } - ], - "purl": "pkg:cargo/tinyvec_macros@0.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Soveu/tinyvec_macros" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "author": "Tokio Contributors ", - "name": "tokio-macros", - "version": "2.6.0", - "description": "Tokio's proc macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-macros@2.6.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "name": "tokio-rustls", - "version": "0.26.4", - "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tokio-rustls@0.26.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tokio-rustls" - }, - { - "type": "website", - "url": "https://github.com/rustls/tokio-rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/tokio-rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18", - "author": "Tokio Contributors ", - "name": "tokio-stream", - "version": "0.1.18", - "description": "Utilities to work with `Stream` and `tokio`. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-stream@0.1.18", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "author": "Tokio Contributors ", - "name": "tokio-util", - "version": "0.7.18", - "description": "Additional utilities for working with Tokio. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-util@0.7.18", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "author": "Tokio Contributors ", - "name": "tokio", - "version": "1.50.0", - "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio@1.50.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "name": "toml", - "version": "1.0.6+spec-1.1.0", - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides implementations of the standard Serialize/Deserialize traits for TOML data to facilitate deserializing and serializing Rust structures. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml@1.0.6+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "name": "toml_datetime", - "version": "1.0.0+spec-1.1.0", - "description": "A TOML-compatible datetime type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_datetime@1.0.0+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "name": "toml_parser", - "version": "1.0.9+spec-1.1.0", - "description": "Yet another format-preserving TOML parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_parser@1.0.9+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "name": "toml_writer", - "version": "1.0.6+spec-1.1.0", - "description": "A low-level interface for writing out TOML ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_writer@1.0.6+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tonic@0.14.3", - "author": "Lucio Franco ", - "name": "tonic", - "version": "0.14.3", - "description": "A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tonic@0.14.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/hyperium/tonic" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/tonic" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "author": "Tower Maintainers ", - "name": "tower-http", - "version": "0.6.8", - "description": "Tower middleware and utilities for HTTP clients and servers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-http@0.6.8", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower-http" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower-http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-layer", - "version": "0.3.3", - "description": "Decorates a `Service` to allow easy composition between `Service`s. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-layer@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-layer/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-service", - "version": "0.3.3", - "description": "Trait representing an asynchronous, request / response based, client or server. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-service@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-service/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "author": "Tower Maintainers ", - "name": "tower", - "version": "0.5.3", - "description": "Tower is a library of modular and reusable components for building robust clients and servers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower@0.5.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower_governor@0.8.0", - "author": "Ben Wishovich ", - "name": "tower_governor", - "version": "0.8.0", - "description": "A rate-limiting middleware for Tower backed by the governor crate that allows configurable key based and global limits", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "44de9b94d849d3c46e06a883d72d408c2de6403367b39df2b1c9d9e7b6736fe6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tower_governor@0.8.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/benwis/tower-governor" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "author": "Tokio Contributors , Eliza Weisman , David Barsky ", - "name": "tracing-attributes", - "version": "0.1.31", - "description": "Procedural macro attributes for automatically instrumenting functions. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-attributes@0.1.31", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "author": "Tokio Contributors ", - "name": "tracing-core", - "version": "0.1.36", - "description": "Core primitives for application-level tracing. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-core@0.1.36", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "author": "Tokio Contributors ", - "name": "tracing-log", - "version": "0.2.0", - "description": "Provides compatibility between `tracing` and the `log` crate. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-log@0.2.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0", - "author": "Tokio Contributors ", - "name": "tracing-serde", - "version": "0.2.0", - "description": "A compatibility layer for serializing trace data with `serde` ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-serde@0.2.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "author": "Eliza Weisman , David Barsky , Tokio Contributors ", - "name": "tracing-subscriber", - "version": "0.3.22", - "description": "Utilities for implementing and composing `tracing` subscribers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-subscriber@0.3.22", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "author": "Eliza Weisman , Tokio Contributors ", - "name": "tracing", - "version": "0.1.44", - "description": "Application-level tracing for Rust. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing@0.1.44", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "author": "Sean McArthur ", - "name": "try-lock", - "version": "0.2.5", - "description": "A lightweight atomic lock.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/try-lock@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/try-lock" - }, - { - "type": "website", - "url": "https://github.com/seanmonstar/try-lock" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/try-lock" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "author": "Paho Lurie-Gregg , Andre Bogus ", - "name": "typenum", - "version": "1.19.0", - "description": "Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/typenum@1.19.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/typenum" - }, - { - "type": "vcs", - "url": "https://github.com/paholg/typenum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0", - "author": "Sean McArthur ", - "name": "unicase", - "version": "2.9.0", - "description": "A case-insensitive wrapper around strings.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/unicase@2.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/unicase" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/unicase" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "author": "David Tolnay ", - "name": "unicode-ident", - "version": "1.0.22", - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" - } - ], - "licenses": [ - { - "expression": "(MIT OR Apache-2.0) AND Unicode-3.0" - } - ], - "purl": "pkg:cargo/unicode-ident@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/unicode-ident" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/unicode-ident" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "author": "kwantam , Manish Goregaokar ", - "name": "unicode-width", - "version": "0.2.2", - "description": "Determine displayed width of `char` and `str` types according to Unicode Standard Annex #11 rules. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/unicode-width@0.2.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/unicode-rs/unicode-width" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-rs/unicode-width" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2", - "author": "Fabio Valentini , Benjamin Sago ", - "name": "unit-prefix", - "version": "0.5.2", - "description": "Format numbers with metric and binary unit prefixes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/unit-prefix@0.5.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://codeberg.org/commons-rs/unit-prefix" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "author": "Brian Smith ", - "name": "untrusted", - "version": "0.9.0", - "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/untrusted@0.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://briansmith.org/rustdoc/untrusted/" - }, - { - "type": "vcs", - "url": "https://github.com/briansmith/untrusted" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "author": "The rust-url developers", - "name": "url", - "version": "2.5.8", - "description": "URL library for Rust, based on the WHATWG URL Standard", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/url@2.5.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/url" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "author": "Henri Sivonen ", - "name": "utf8_iter", - "version": "1.0.4", - "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/utf8_iter@1.0.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/utf8_iter/" - }, - { - "type": "website", - "url": "https://docs.rs/utf8_iter/" - }, - { - "type": "vcs", - "url": "https://github.com/hsivonen/utf8_iter" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "author": "Joe Wilm , Christian Duerr ", - "name": "utf8parse", - "version": "0.2.2", - "description": "Table-driven UTF-8 parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/utf8parse@0.2.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/utf8parse/" - }, - { - "type": "vcs", - "url": "https://github.com/alacritty/vte" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-gen@5.4.0", - "author": "Juha Kukkonen ", - "name": "utoipa-gen", - "version": "5.4.0", - "description": "Code generation implementation for utoipa", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/utoipa-gen@5.4.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/juhaku/utoipa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-swagger-ui@9.0.2", - "author": "Juha Kukkonen ", - "name": "utoipa-swagger-ui", - "version": "9.0.2", - "description": "Swagger UI for utoipa", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/utoipa-swagger-ui@9.0.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/juhaku/utoipa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "author": "Juha Kukkonen ", - "name": "utoipa", - "version": "5.4.0", - "description": "Compile time generated OpenAPI documentation for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/utoipa@5.4.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/juhaku/utoipa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "author": "Ashley Mannix, Dylan DPC, Hunar Roop Kahlon", - "name": "uuid", - "version": "1.22.0", - "description": "A library to generate and parse UUIDs.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/uuid@1.22.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/uuid" - }, - { - "type": "website", - "url": "https://github.com/uuid-rs/uuid" - }, - { - "type": "vcs", - "url": "https://github.com/uuid-rs/uuid" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "author": "Sergio Benitez ", - "name": "version_check", - "version": "0.9.5", - "description": "Tiny crate to check the version of the installed/running rustc.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/version_check@0.9.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/version_check/" - }, - { - "type": "vcs", - "url": "https://github.com/SergioBenitez/version_check" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "author": "Andrew Gallant ", - "name": "walkdir", - "version": "2.5.0", - "description": "Recursively walk a directory.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/walkdir@2.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/walkdir/" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/walkdir" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/walkdir" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "author": "Sean McArthur ", - "name": "want", - "version": "0.3.1", - "description": "Detect when another Future wants a result.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/want@0.3.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/want" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/want" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "name": "web-time", - "version": "1.1.0", - "description": "Drop-in replacement for std::time for Wasm in browsers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/web-time@1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/daxpedda/web-time" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5", - "name": "webpki-roots", - "version": "1.0.5", - "description": "Mozilla's CA root certificates for use with webpki", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" - } - ], - "licenses": [ - { - "expression": "CDLA-Permissive-2.0" - } - ], - "purl": "pkg:cargo/webpki-roots@1.0.5", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/rustls/webpki-roots" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/webpki-roots" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14", - "name": "winnow", - "version": "0.7.14", - "description": "A byte-oriented, zero-copy, parser combinators library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/winnow@0.7.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/winnow-rs/winnow" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "author": "The ICU4X Project Developers", - "name": "writeable", - "version": "0.6.2", - "description": "A more efficient alternative to fmt::Display", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/writeable@0.6.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1", - "author": "Steven Allen ", - "name": "xattr", - "version": "1.6.1", - "description": "unix extended filesystem attributes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/xattr@1.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/xattr" - }, - { - "type": "vcs", - "url": "https://github.com/Stebalien/xattr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "author": "Manish Goregaokar ", - "name": "yoke-derive", - "version": "0.8.1", - "description": "Custom derive for the yoke crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/yoke-derive@0.8.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "author": "Manish Goregaokar ", - "name": "yoke", - "version": "0.8.1", - "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/yoke@0.8.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37", - "author": "Joshua Liebow-Feeser , Jack Wrenn ", - "name": "zerocopy", - "version": "0.8.37", - "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac" - } - ], - "licenses": [ - { - "expression": "BSD-2-Clause OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zerocopy@0.8.37", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/google/zerocopy" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "author": "Manish Goregaokar ", - "name": "zerofrom-derive", - "version": "0.1.6", - "description": "Custom derive for the zerofrom crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerofrom-derive@0.1.6", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "author": "Manish Goregaokar ", - "name": "zerofrom", - "version": "0.1.6", - "description": "ZeroFrom trait for constructing", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerofrom@0.1.6", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2", - "author": "The RustCrypto Project Developers", - "name": "zeroize", - "version": "1.8.2", - "description": "Securely clear secrets from memory with a simple trait built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM! ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zeroize@1.8.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/RustCrypto/utils/tree/master/zeroize" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3", - "author": "The RustCrypto Project Developers", - "name": "zeroize_derive", - "version": "1.4.3", - "description": "Custom derive support for zeroize", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zeroize_derive@1.4.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils/tree/master/zeroize/derive" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "author": "The ICU4X Project Developers", - "name": "zerotrie", - "version": "0.2.3", - "description": "A data structure that efficiently maps strings to integers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerotrie@0.2.3", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2", - "author": "Manish Goregaokar ", - "name": "zerovec-derive", - "version": "0.11.2", - "description": "Custom derive for the zerovec crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerovec-derive@0.11.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5", - "author": "The ICU4X Project Developers", - "name": "zerovec", - "version": "0.11.5", - "description": "Zero-copy vector backed by a byte array", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerovec@0.11.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0", - "author": "Mathijs van de Nes , Marli Frost , Ryan Levick , Chris Hennick ", - "name": "zip", - "version": "3.0.0", - "description": "Library to support the reading and writing of zip files. ", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/zip@3.0.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/zip-rs/zip2.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2", - "name": "zlib-rs", - "version": "0.6.2", - "description": "A memory-safe zlib implementation written in rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c745c48e1007337ed136dc99df34128b9faa6ed542d80a1c673cf55a6d7236c8" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/zlib-rs@0.6.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/trifectatechfoundation/zlib-rs" - }, - { - "type": "vcs", - "url": "https://github.com/trifectatechfoundation/zlib-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "author": "David Tolnay ", - "name": "zmij", - "version": "1.0.17", - "description": "A double-to-string conversion algorithm based on Schubfach and yy", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/zmij@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/zmij" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/zmij" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3", - "name": "zopfli", - "version": "0.8.3", - "description": "A Rust implementation of the Zopfli compression algorithm.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/zopfli@0.8.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/zopfli-rs/zopfli" - }, - { - "type": "vcs", - "url": "https://github.com/zopfli-rs/zopfli" - } - ] - } - ], - "dependencies": [ - { - "ref": "path+file:///srv/projects/nora/nora-registry#0.2.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bcrypt@0.19.0", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#prometheus@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tower_governor@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "registry+https://github.com/rust-lang/crates.io-index#utoipa-swagger-ui@9.0.2", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bcrypt@0.19.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#blowfish@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#blowfish@0.9.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.19.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#forwarded-header-value@0.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#nonempty@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-timer@3.0.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-timer@3.0.3", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "registry+https://github.com/rust-lang/crates.io-index#nonzero_ext@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "registry+https://github.com/rust-lang/crates.io-index#quanta@0.12.6", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#spinning_top@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-timeout@0.5.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nonempty@0.7.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nonzero_ext@0.3.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#prometheus@0.14.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#protobuf@3.7.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf-support@3.7.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf@3.7.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#protobuf-support@3.7.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quanta@0.12.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#raw-cpuid@11.6.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#raw-cpuid@11.6.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.11.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.11.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#spinning_top@0.3.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tonic@0.14.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-timeout@0.5.2", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower_governor@0.8.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#forwarded-header-value@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tonic@0.14.3", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-gen@5.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-swagger-ui@9.0.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#utoipa-gen@5.4.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.19.1", - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8" - ] - } - ] -} \ No newline at end of file diff --git a/docs-ru/admin-guide.md b/docs-ru/admin-guide.md index 0c83be8..39a35d2 100644 --- a/docs-ru/admin-guide.md +++ b/docs-ru/admin-guide.md @@ -1,6 +1,6 @@ # Руководство администратора NORA -**Версия:** 1.0 +**Версия:** 0.2.32 **Дата:** 2026-03-16 **Правообладатель:** ООО «ТАИАРС» (торговая марка АРТАИС) diff --git a/docs-ru/technical-spec.md b/docs-ru/technical-spec.md index 6bcbc7d..a20af1a 100644 --- a/docs-ru/technical-spec.md +++ b/docs-ru/technical-spec.md @@ -2,7 +2,7 @@ ## Программа «NORA — Реестр артефактов» -**Версия документа:** 1.0 +**Версия документа:** 0.2.32 **Дата:** 2026-03-16 **Правообладатель:** ООО «ТАИАРС» (торговая марка АРТАИС) diff --git a/docs-ru/user-guide.md b/docs-ru/user-guide.md index f844557..974e8ea 100644 --- a/docs-ru/user-guide.md +++ b/docs-ru/user-guide.md @@ -1,6 +1,6 @@ # Руководство пользователя NORA -**Версия:** 1.0 +**Версия:** 0.2.32 **Дата:** 2026-03-16 **Правообладатель:** ООО «ТАИАРС» (торговая марка АРТАИС) diff --git a/install.sh b/install.sh deleted file mode 100644 index 99f7227..0000000 --- a/install.sh +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/env sh -# NORA installer — https://getnora.io/install.sh -# Usage: curl -fsSL https://getnora.io/install.sh | sh - -set -e - -REPO="getnora-io/nora" -BINARY="nora" -INSTALL_DIR="/usr/local/bin" - -# ── Detect OS and architecture ────────────────────────────────────────────── - -OS="$(uname -s)" -ARCH="$(uname -m)" - -case "$OS" in - Linux) os="linux" ;; - Darwin) os="darwin" ;; - *) - echo "Unsupported OS: $OS" - echo "Please download manually: https://github.com/$REPO/releases/latest" - exit 1 - ;; -esac - -case "$ARCH" in - x86_64 | amd64) arch="amd64" ;; - aarch64 | arm64) arch="arm64" ;; - *) - echo "Unsupported architecture: $ARCH" - echo "Please download manually: https://github.com/$REPO/releases/latest" - exit 1 - ;; -esac - -ASSET="${BINARY}-${os}-${arch}" - -# ── Get latest release version ────────────────────────────────────────────── - -VERSION="$(curl -fsSL "https://api.github.com/repos/$REPO/releases/latest" \ - | grep '"tag_name"' \ - | sed 's/.*"tag_name": *"\([^"]*\)".*/\1/')" - -if [ -z "$VERSION" ]; then - echo "Failed to get latest version" - exit 1 -fi - -echo "Installing NORA $VERSION ($os/$arch)..." - -# ── Download binary and checksum ──────────────────────────────────────────── - -BASE_URL="https://github.com/$REPO/releases/download/$VERSION" -TMP_DIR="$(mktemp -d)" -trap 'rm -rf "$TMP_DIR"' EXIT - -echo "Downloading $ASSET..." -curl -fsSL "$BASE_URL/$ASSET" -o "$TMP_DIR/$BINARY" -curl -fsSL "$BASE_URL/$ASSET.sha256" -o "$TMP_DIR/$ASSET.sha256" - -# ── Verify checksum ───────────────────────────────────────────────────────── - -echo "Verifying checksum..." -EXPECTED="$(awk '{print $1}' "$TMP_DIR/$ASSET.sha256")" -ACTUAL="$(sha256sum "$TMP_DIR/$BINARY" | awk '{print $1}')" - -if [ "$EXPECTED" != "$ACTUAL" ]; then - echo "Checksum mismatch!" - echo " Expected: $EXPECTED" - echo " Actual: $ACTUAL" - exit 1 -fi - -echo "Checksum OK" - -# ── Install ───────────────────────────────────────────────────────────────── - -chmod +x "$TMP_DIR/$BINARY" - -if [ -w "$INSTALL_DIR" ]; then - mv "$TMP_DIR/$BINARY" "$INSTALL_DIR/$BINARY" -elif command -v sudo >/dev/null 2>&1; then - sudo mv "$TMP_DIR/$BINARY" "$INSTALL_DIR/$BINARY" -else - # Fallback to ~/.local/bin - INSTALL_DIR="$HOME/.local/bin" - mkdir -p "$INSTALL_DIR" - mv "$TMP_DIR/$BINARY" "$INSTALL_DIR/$BINARY" - echo "Installed to $INSTALL_DIR/$BINARY" - echo "Make sure $INSTALL_DIR is in your PATH" -fi - -# ── Done ──────────────────────────────────────────────────────────────────── - -echo "" -echo "NORA $VERSION installed to $INSTALL_DIR/$BINARY" -echo "" -nora --version 2>/dev/null || true diff --git a/logo.jpg b/logo.jpg deleted file mode 100644 index 50fd839042c206648837b77136a0a67db86dd2a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6048 zcmYjU2Q*yWx4$!bi{7Hm=p{st8bcVpj2cAmgb}?Y_<|78YjiOL5hO$>BqGBoqZ2X` zy|+<sBLfp769WSa3qxvh zYFpdyKOX^la-aotP6VO{!1N#@deEOwz$E~Hh)6)d|05771(=A0jGPz*0*F8a@qYv+ zA_kF=(g6S&00t3;0MWm5AcCHRlnfxJr(=LfGBUBS!AzK0%jgNAiAVr282leI08CKO z(K8S;LZFf`6DCLhbQ0zm1^@&G6O&O=P?8W4|1~5;1L%nvpi+#y(&`AO2Xq>y0smyY zc>7_TiH~2#`EldYAqhnCj#*%4*2f7=6Z7&Tm)Is*nB%hlB%TrUHz)Dml!W5{EsmZJ zD)l$azab!plH*H9CNM|;Kl1=J!3IoEL{Biwkpk3VCICQ3kc5T_BSIY{03G205CAcg zX@(X-LulLt01*@j5&%TZqz>v2qO)hM1n3aNAT2tAnxKOrNC;j8PdY*%br=a9QEVlM zQV$-tIdRL~*KXrWXa8xyH0o=pSwq+~N{yqI2{57qOf~@~f;I8?O%UvFZgoxZPpOZ8 z1&bHr|RsXrKqZH}!y2^+&?8$go!QI#uoTg@(Oc7R}nx%{^qa3ab9{evyXb~&`HVGtM9nh~NUyppWaW0l?HH*B|| z=HZ$Z5v6yUnDbzx0XvNCFf#G9EoD?#DQX>zR1~7-VCm+to+UBczfpKaA-~lq)rBlO zhTk^tE?TqPz<>NTE6^kByxntWG|21aTbM?ILK^xk{Bz-fb}J$ssXw$(7|=lI>~Rc8 zGxFMRR;QZ@b$ zAcUKpU3*}gB^b}98gBY+eXlMYEU$vKDy-|z>JhYJZI@asO~dAGtf}5T8*f(k)B}UtxG+lT*E#b9g-sD;c4kj!XVY!Uy2G=6*liL|Y z?&X9(TIBxxVGpxWwY-Lm3kzSY5;0~xc1Uu$6p6+?z9sMIXlq~7_*(qAoy_p`+Cs=( zyfn6|eRCsx=&cKjv=hqh4t%X1mtXQ5gWgpCQM$c{iy{TrNfY^AS)o)p{XZLaaV1PO zPutZ8TshE+xSF?ee`?6t_35@ZLy~oV&y$gNA6j_U+C%Yt^20D$=_)te!Zmf_PY02J`2VPW7DjtPg1E;FL zS=rVuJB#)-6!trZwJzdmF0W|f?e;kydT}4VpJD#hgXF6v4R-K>@8N>wotKh-N_D;u zJ5_56eM9OIpb>-XgrR^PmfNDad-UK8#aIItbCS#2`lTl!QEXT^;7ziF@7`r8hbxX zBlCqOQ$_r*+fVXmH|$qBnhr7y!@}f?RcJ7_Z+ZqT3-i|7?K+J*Uv7-yUm&AswWcBj zjKs9_a&qh!i!=K}8*7G<0!b<7CC02AP3+wUuHs+XPX^xK)S!M4VUEdT&c75Zc!W!k zI;&juZ{EyN_Ss2c_ueky)yAF_mNX1`i>j(5kVzb$ZtXru&+@ogvsFK6Fuifc^13sldjy$r{bHvtK%6xRJ)b=$@AIXqD^!ALS35_ld=n43ypw@ zB|viRL)1;(4Ak(4wUeJug7vt&gdO?j9IM=OUu-WN zJSe)3Mix`%tCFq?xz9%`1!G!@tdtO>QvyWij|}dKf5z1B_sAA)_uuU{HHXkFhNyW@ z?x#rxtczvsuuo3Rn3tIZOk3hB{5n|{ix21G@xWy zcJmh={sCmSLu~&!y|EGgh=amM*bh0o=~nJ#vFWSQ(aD`+XJ|1^M$TmkA?HM(q4?1k z*)rYBG37Djkn05ugKe|BtsYJeI_3bR+&`#{06)N-Yf9(Qeq8EGl36HUPdv^PgKrwW z-(oQ+)`Gx<%20CG(`L?ITxlCdaE-TEsQdx6w%COUj{l`1E@5&g0d|lJlY?Ub^1zCn zXWfe-huJEbHBEkMvRlLY+!j2ck-XM2|Ld;)R}!EV0bl{d1W*Q})D#ZX!(5jh@Tuip%&}*`!!Z%q&K)Yo-9d1-EBx3Q zvKwjJObK}$Lr4!P2Pg@+l^{%o%LoheZy}TrauVpr6N--s7L))a=HH3`EtQM_EXfI= z83YDSc&ej&c`BlNHn63ko!C+}smp}1FdkZ-iKD~g4QzE<{*DhWT;Gu*tawz}IjIL9w!fb@8iSMbNr-ro`T0#j$rGNz3pJr0 z+yPPe@e!V2eDz(;sU79DxpVX6SG1|{B}buee@jtrMvg-aS!QOQ@^)Iq0Z)bMbpKZK zc->U`;g1Usb3+n=aF_Jw(<{wF5n_+n#hHTKmG&YZJ$@T=nMNF92jxPDn+M&W|8mAt zz>vT|#L5nTLbMt_mk?c+q%E#Mk)Zt!BOk6N7F=V=(-iwOHKn1F55yQ4)AlBHpngs6 zBpz`wDEMwwu2JheNpyB!);2LBO`yUrVC(RnqBdD$%$56kDvgC^qHIF$sBbUdC>qLg zSH{D2eLA#W>wS6)MkX;`Cr?z)+I!Bn@Vd9)3#fHgamr|2o{7kA(Zi*8>>>?5Ddyg> zl~Owy+GE<0t#<^!TCCDS1h*$Y;ExY)$yMavA~EOf%fs=mk`-sN=$T~=4303^f5rC+ z89IJ(f5SXLC4awn--A9)bY}ZfFgE8?l{k+ftEM-DZ@pC9^_d z?yF2VCc$ANc8A-iys#&treEc`Q;Mf!)NlcWMW01aeb3_SkvOHCv|w_z$O}dPQj%eY zV0G5)we5O+5ie!O=WD%J!Phtn^;d*d9!8+6idis+_qU_C8q`D0i^tWS zt88PfS9FsjwRf?ih*ZNwzPgS&xyKd-DU~lC+l`z3a)_f4%oz+d=CyG5<)Ub|X>vcC zsaG%0^ABy?iip#)Ddo&I3p(eUtBth~|N7Y{g3ANn7BtOSKY5ZyGgA5tjj@o_n|>@| zFk*POU`|~B*?06kU#J5)W-UNhTVH7`(L9=VnaTcEL6)0q&I1nGO0Ek!Yto4T@GD7- zmYh4)h~8=E?VDtoY5Td>BjT}r8OVW1zGj6x6B2{y90B>*X#E=4Q@f< z>f4LE;iq`PI+r-*PaF#Mx%EeyYCJ2BGlsPvb+J=Mb7$HuzxlJiXr`+#cU;JOkKp-2|uL7dbqnoO+Vf4Z3MGK2jsBM!uF8H%oh6G2yReR!1e(!a z8=F}l+JQIE2X%OH%b%`p+SWnT)GyxDv4v+V)#t_LMfXzW>$4#6WL5$JoVz1dUu@FP zn*GCO@CLRLSylb_n}7|L8lhLG9jFj%2?c>-iS7p)_sv=L8+}WyT^0jjZ;dgi8z&f@ zKfUD4%Sp9pueQ**dEJxJLh#^?O{EfJzQJlk<6BY{){!0S8u&qw5FHh!`k#U}q{wyG zap!kw>~B-@bt4ReJFZi~y%hO>jy6|ATRmQLwnV7xL_HSV6IhfMRfLP6W*m2TjL zTbbQbEMZ#0f%em3IdzJH-k@7WZo&t6vfr&nyN z&@7(UQTo>^k?v4NZ(({kqoexjhn`*`*QjZmk=(lIE*qZKYr#<^pp^+Ul^CtyQNXG5 zF5*0V_1E$HdD{mXr{YznQeQ){WlwtI^Qxb0!`)_q6RB3qJ%>1Dctz1&4)#w|aiZzl z%KaHPRfgfUQ>b93h&=UI=SP(rm|({9gBB{=}*0CRdb31oo3v$NKXz^tK97=lP z{F}_i1F$f`64tSIQA=0-Kf8j+t{XHD4i(gi-TV+kbimVz9gZp`(;IoFduoWiYyNS1 zf;5%Mweg*Q?jx6!?KK}h5kU3fA6GTh3ZY`oqm_m4M4LxfrGL(1zyK@`28&UPC*~wo zEzV3vp|=``#14mUzt(DRlhM)rq9sJc&s)Lvw3~|oe0M-fSC`3I z4s<3cJ7kjY)EYY@`&Cf*vj%K^yr;0-SpBtYB@Bgvtfi`qJe7WstB_MCJf3cz!E5xI z5|P-2V`#2p*P++Jih>5rpngU_mN%d8$n;y=S*KfSkchf}eEmCaDwP*5#hFMCg*~S` z_Jd0cA&NF>LnFo8dgDAdzna%EGAesXINTvhQo1gxxEc@kmeaMFac`xduk!q8YtWc1WF$sj8K1XTB>#+0}G7T8sBCEZ{&d)D0pq0T6)m)~rrj+_LSb>uUWl*xF zOuZ6^#ORVzC&o)(3tKU*X-8xyYQ}KU#g5~gsc5`{t!~T7ptWBb8R?ioMBSEx zHj8qy6NSy`gGQ5c^;Le5zZ&f3TB&UmO>&jEscvP}5wv!PU&o90IwLf_h=L2m;MAg! zK1HQg9!W;#QT?)vu3H-O15=^7nLd_2^$N3Qvb<|SOJ;q;-)Sk8Bg}OCfL#XzGXe>((LARJIi#m#558zxdhD<4Sk_d1CERVl{N*_yzCfoll>xqB ziy60Rw%wk+c2!Ak95$v8MHGt?sc5VQc zvrW!fKA0mZhqypo^IeyahE^||nb zirjK>4qcYfKH`FIgR!g``uulpQXrW&5wc->Mc(P*RJQanzOZo=TomEz%^bOS0Z-<0 zv5{rUwNq%1a#-U`<22C=V%ij#ta+-rRq_1c7s<`?d+T8?Gt4YwECN>>^nYXu!kd+l5dxS8Z@#1 z6`lx1ai!eHF-CA9SL!5suHw3MN+o%`>qn@Zb^qr^#9aTTBTPd#tNOEK84=V}3|3Lb zoJz;84j1(x#(T84F_R=<3|{{cRlXtI)Dgdx;+>zUKwUfN3@wx_zs} z4mbAPl?#Ru6xhfsRK=gi6%Q(8=A?J;ua+C!06$OIdCE*t!u1s584_Z|cCvJBppk{A v0RlmDl1qMwrS?q)t2udaQmS@$cS$aI&PiQG61F=L&DBh diff --git a/nora-cli/nora-cli.cdx.json b/nora-cli/nora-cli.cdx.json deleted file mode 100644 index 7217bb9..0000000 --- a/nora-cli/nora-cli.cdx.json +++ /dev/null @@ -1,5902 +0,0 @@ -{ - "bomFormat": "CycloneDX", - "specVersion": "1.3", - "version": 1, - "serialNumber": "urn:uuid:03166a67-b517-4ce8-9a76-f6687d0c2169", - "metadata": { - "timestamp": "2026-03-16T13:29:38.114005300Z", - "tools": [ - { - "vendor": "CycloneDX", - "name": "cargo-cyclonedx", - "version": "0.5.8" - } - ], - "authors": [ - { - "name": "DevITWay", - "email": "devitway@gmail.com" - } - ], - "component": { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-cli#0.2.31", - "author": "DevITWay ", - "name": "nora-cli", - "version": "0.2.31", - "description": "CLI tool for NORA registry", - "scope": "required", - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nora-cli@0.2.31?download_url=file://.", - "externalReferences": [ - { - "type": "website", - "url": "https://getnora.io" - }, - { - "type": "vcs", - "url": "https://github.com/getnora-io/nora" - } - ], - "components": [ - { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-cli#0.2.31 bin-target-0", - "name": "nora-cli", - "version": "0.2.31", - "purl": "pkg:cargo/nora-cli@0.2.31?download_url=file://.#src/main.rs" - } - ] - }, - "properties": [ - { - "name": "cdx:rustc:sbom:target:triple", - "value": "x86_64-unknown-linux-gnu" - } - ] - }, - "components": [ - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "author": "Jonas Schievink , oyvindln ", - "name": "adler2", - "version": "2.0.1", - "description": "A simple clean-room implementation of the Adler-32 checksum", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - } - ], - "licenses": [ - { - "expression": "0BSD OR MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/adler2@2.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/adler2/" - }, - { - "type": "vcs", - "url": "https://github.com/oyvindln/adler2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "author": "Zakarum ", - "name": "allocator-api2", - "version": "0.2.21", - "description": "Mirror of Rust's allocator API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/allocator-api2@0.2.21", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/allocator-api2" - }, - { - "type": "website", - "url": "https://github.com/zakarumych/allocator-api2" - }, - { - "type": "vcs", - "url": "https://github.com/zakarumych/allocator-api2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "name": "anstream", - "version": "0.6.21", - "description": "IO stream adapters for writing colored text that will gracefully degrade according to your terminal's capabilities.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstream@0.6.21", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "name": "anstyle-parse", - "version": "0.2.7", - "description": "Parse ANSI Style Escapes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle-parse@0.2.7", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "name": "anstyle-query", - "version": "1.1.5", - "description": "Look up colored console capabilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle-query@1.1.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "name": "anstyle", - "version": "1.0.13", - "description": "ANSI text styling", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle@1.0.13", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "author": "Stjepan Glavina , Contributors to futures-rs", - "name": "atomic-waker", - "version": "1.1.2", - "description": "A synchronization primitive for task wakeup", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/atomic-waker@1.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/smol-rs/atomic-waker" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "author": "Marshall Pierce ", - "name": "base64", - "version": "0.22.1", - "description": "encodes and decodes base64 as bytes or utf8", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/base64@0.22.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/base64" - }, - { - "type": "vcs", - "url": "https://github.com/marshallpierce/rust-base64" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "author": "The Rust Project Developers", - "name": "bitflags", - "version": "2.10.0", - "description": "A macro to generate structures which behave like bitflags. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/bitflags@2.10.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/bitflags" - }, - { - "type": "website", - "url": "https://github.com/bitflags/bitflags" - }, - { - "type": "vcs", - "url": "https://github.com/bitflags/bitflags" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "author": "Carl Lerche , Sean McArthur ", - "name": "bytes", - "version": "1.11.1", - "description": "Types and traits for working with bytes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/bytes@1.11.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/bytes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "author": "Alex Crichton ", - "name": "cc", - "version": "1.2.55", - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code. ", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cc@1.2.55", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cc" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/cc-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/cc-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "author": "Alex Crichton ", - "name": "cfg-if", - "version": "1.0.4", - "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cfg-if@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/cfg-if" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "author": "Zicklag ", - "name": "cfg_aliases", - "version": "0.2.1", - "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/cfg_aliases@0.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cfg_aliases" - }, - { - "type": "website", - "url": "https://github.com/katharostech/cfg_aliases" - }, - { - "type": "vcs", - "url": "https://github.com/katharostech/cfg_aliases" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "name": "clap", - "version": "4.5.60", - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap@4.5.60", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "name": "clap_builder", - "version": "4.5.60", - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_builder@4.5.60", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55", - "name": "clap_derive", - "version": "4.5.55", - "description": "Parse command line argument by defining a struct, derive crate.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_derive@4.5.55", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "name": "clap_lex", - "version": "1.0.0", - "description": "Minimal, flexible command line parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_lex@1.0.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "name": "colorchoice", - "version": "1.0.4", - "description": "Global override of color control", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/colorchoice@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "name": "console", - "version": "0.16.2", - "description": "A terminal and console abstraction for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/console@0.16.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/console" - }, - { - "type": "website", - "url": "https://github.com/console-rs/console" - }, - { - "type": "vcs", - "url": "https://github.com/console-rs/console" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "author": "Sam Rijs , Alex Crichton ", - "name": "crc32fast", - "version": "1.5.0", - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crc32fast@1.5.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/srijs/rust-crc32fast" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "author": "Jane Lusby ", - "name": "displaydoc", - "version": "0.2.5", - "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/displaydoc@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/displaydoc" - }, - { - "type": "website", - "url": "https://github.com/yaahc/displaydoc" - }, - { - "type": "vcs", - "url": "https://github.com/yaahc/displaydoc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "name": "equivalent", - "version": "1.0.2", - "description": "Traits for key comparison in maps.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/equivalent@1.0.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/equivalent" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "author": "Chris Wong , Dan Gohman ", - "name": "errno", - "version": "0.3.14", - "description": "Cross-platform interface to the `errno` variable.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/errno@0.3.14", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/errno" - }, - { - "type": "vcs", - "url": "https://github.com/lambda-fairy/rust-errno" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "author": "Alex Crichton ", - "name": "filetime", - "version": "0.2.27", - "description": "Platform-agnostic accessors of timestamps in File metadata ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/filetime@0.2.27", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/filetime" - }, - { - "type": "website", - "url": "https://github.com/alexcrichton/filetime" - }, - { - "type": "vcs", - "url": "https://github.com/alexcrichton/filetime" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "name": "find-msvc-tools", - "version": "0.1.9", - "description": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/find-msvc-tools@0.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/find-msvc-tools" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/cc-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "author": "Alex Crichton , Josh Triplett ", - "name": "flate2", - "version": "1.1.9", - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/flate2@1.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/flate2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/flate2-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/flate2-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "author": "Alex Crichton ", - "name": "fnv", - "version": "1.0.7", - "description": "Fowler–Noll–Vo hash function", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/fnv@1.0.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://doc.servo.org/fnv/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-fnv" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "author": "Orson Peters ", - "name": "foldhash", - "version": "0.2.0", - "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/foldhash@0.2.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/orlp/foldhash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "author": "The rust-url developers", - "name": "form_urlencoded", - "version": "1.2.2", - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/form_urlencoded@1.2.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "name": "futures-channel", - "version": "0.3.31", - "description": "Channels for asynchronous communication using futures-rs. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-channel@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "name": "futures-core", - "version": "0.3.31", - "description": "The core traits and types in for the `futures` library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-core@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "name": "futures-io", - "version": "0.3.31", - "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-io@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "name": "futures-macro", - "version": "0.3.31", - "description": "The futures-rs procedural macro implementations. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-macro@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "name": "futures-sink", - "version": "0.3.31", - "description": "The asynchronous `Sink` trait for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-sink@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "name": "futures-task", - "version": "0.3.31", - "description": "Tools for working with tasks. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-task@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "name": "futures-util", - "version": "0.3.31", - "description": "Common utilities and extension traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-util@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.2.17", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.2.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.3.4", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.3.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "author": "Carl Lerche , Sean McArthur ", - "name": "h2", - "version": "0.4.13", - "description": "An HTTP/2 client and server", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/h2@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/h2" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/h2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "author": "Amanieu d'Antras ", - "name": "hashbrown", - "version": "0.16.1", - "description": "A Rust port of Google's SwissTable hash map", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hashbrown@0.16.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/hashbrown" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "name": "heck", - "version": "0.5.0", - "description": "heck is a case conversion library.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/heck@0.5.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/withoutboats/heck" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body-util", - "version": "0.1.3", - "description": "Combinators and adapters for HTTP request or response bodies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body-util@0.1.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body-util" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body", - "version": "1.0.1", - "description": "Trait representing an asynchronous, streaming, HTTP request or response body. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body@1.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "author": "Alex Crichton , Carl Lerche , Sean McArthur ", - "name": "http", - "version": "1.4.0", - "description": "A set of types for representing HTTP requests and responses. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/http@1.4.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "author": "Sean McArthur ", - "name": "httparse", - "version": "1.10.1", - "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httparse@1.10.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/httparse" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/httparse" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "author": "Pyfisch ", - "name": "httpdate", - "version": "1.0.3", - "description": "HTTP date parsing and formatting", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httpdate@1.0.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/pyfisch/httpdate" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "name": "hyper-rustls", - "version": "0.27.7", - "description": "Rustls+hyper integration for pure rust HTTPS", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR ISC OR MIT" - } - ], - "purl": "pkg:cargo/hyper-rustls@0.27.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-rustls/" - }, - { - "type": "website", - "url": "https://github.com/rustls/hyper-rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/hyper-rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "author": "Sean McArthur ", - "name": "hyper-util", - "version": "0.1.19", - "description": "hyper utilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper-util@0.1.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-util" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper-util" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "author": "Sean McArthur ", - "name": "hyper", - "version": "1.8.1", - "description": "A protective and efficient HTTP library for all.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper@1.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_collections", - "version": "2.1.1", - "description": "Collection of API for use in ICU libraries.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_collections@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_locale_core", - "version": "2.1.1", - "description": "API for managing Unicode Language and Locale Identifiers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_locale_core@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_normalizer", - "version": "2.1.1", - "description": "API for normalizing text into Unicode Normalization Forms", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_normalizer@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_normalizer_data", - "version": "2.1.1", - "description": "Data for the icu_normalizer crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_normalizer_data@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "author": "The ICU4X Project Developers", - "name": "icu_properties", - "version": "2.1.2", - "description": "Definitions for Unicode properties", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_properties@2.1.2", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "author": "The ICU4X Project Developers", - "name": "icu_properties_data", - "version": "2.1.2", - "description": "Data for the icu_properties crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_properties_data@2.1.2", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_provider", - "version": "2.1.1", - "description": "Trait and struct definitions for the ICU data provider", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_provider@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "author": "The rust-url developers", - "name": "idna", - "version": "1.1.0", - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/idna@1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "author": "The rust-url developers", - "name": "idna_adapter", - "version": "1.2.1", - "description": "Back end adapter for idna", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/idna_adapter@1.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/idna_adapter/latest/idna_adapter/" - }, - { - "type": "website", - "url": "https://docs.rs/crate/idna_adapter/latest" - }, - { - "type": "vcs", - "url": "https://github.com/hsivonen/idna_adapter" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "name": "indexmap", - "version": "2.13.0", - "description": "A hash table with consistent order and fast iteration.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/indexmap@2.13.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indexmap/" - }, - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/indexmap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "name": "indicatif", - "version": "0.18.4", - "description": "A progress bar and cli reporting library for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/indicatif@0.18.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indicatif" - }, - { - "type": "vcs", - "url": "https://github.com/console-rs/indicatif" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "author": "Kris Price ", - "name": "ipnet", - "version": "2.11.0", - "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ipnet@2.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ipnet" - }, - { - "type": "vcs", - "url": "https://github.com/krisprice/ipnet" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "author": "YOSHIOKA Takuma ", - "name": "iri-string", - "version": "0.7.10", - "description": "IRI as string types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/iri-string@0.7.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/lo48576/iri-string" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "name": "is_terminal_polyfill", - "version": "1.70.2", - "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/is_terminal_polyfill@1.70.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/polyfill-rs/is_terminal_polyfill" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "author": "David Tolnay ", - "name": "itoa", - "version": "1.0.17", - "description": "Fast integer primitive to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/itoa@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/itoa" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/itoa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "author": "The Rust Project Developers", - "name": "libc", - "version": "0.2.182", - "description": "Raw FFI bindings to platform libraries like libc.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/libc@0.2.182", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/libc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1", - "author": "Dan Gohman ", - "name": "linux-raw-sys", - "version": "0.12.1", - "description": "Generated bindings for Linux's userspace API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/linux-raw-sys@0.12.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/linux-raw-sys" - }, - { - "type": "vcs", - "url": "https://github.com/sunfishcode/linux-raw-sys" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "author": "The ICU4X Project Developers", - "name": "litemap", - "version": "0.8.1", - "description": "A key-value Map implementation based on a flat, sorted Vec.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/litemap@0.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/litemap" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "author": "Amanieu d'Antras ", - "name": "lock_api", - "version": "0.4.14", - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lock_api@0.4.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "author": "The Rust Project Developers", - "name": "log", - "version": "0.4.29", - "description": "A lightweight logging facade for Rust ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/log@0.4.29", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/log" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/log" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "author": "Benjamin Saunders ", - "name": "lru-slab", - "version": "0.1.2", - "description": "Pre-allocated storage with constant-time LRU tracking", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0 OR Zlib" - } - ], - "purl": "pkg:cargo/lru-slab@0.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Ralith/lru-slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "author": "Andrew Gallant , bluss", - "name": "memchr", - "version": "2.7.6", - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/memchr@2.7.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/memchr/" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/memchr" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/memchr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "author": "Frommi , oyvindln , Rich Geldreich richgel99@gmail.com", - "name": "miniz_oxide", - "version": "0.8.9", - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" - } - ], - "licenses": [ - { - "expression": "MIT OR Zlib OR Apache-2.0" - } - ], - "purl": "pkg:cargo/miniz_oxide@0.8.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/miniz_oxide" - }, - { - "type": "website", - "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide" - }, - { - "type": "vcs", - "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "author": "Carl Lerche , Thomas de Zeeuw , Tokio Contributors ", - "name": "mio", - "version": "1.1.1", - "description": "Lightweight non-blocking I/O.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/mio@1.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/mio" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/mio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "author": "Aleksey Kladov ", - "name": "once_cell", - "version": "1.21.3", - "description": "Single assignment cells and lazy values.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/once_cell@1.21.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/once_cell" - }, - { - "type": "vcs", - "url": "https://github.com/matklad/once_cell" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "author": "Amanieu d'Antras ", - "name": "parking_lot", - "version": "0.12.5", - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot@0.12.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "author": "Amanieu d'Antras ", - "name": "parking_lot_core", - "version": "0.9.12", - "description": "An advanced API for creating custom synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot_core@0.9.12", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "author": "The rust-url developers", - "name": "percent-encoding", - "version": "2.3.2", - "description": "Percent encoding and decoding", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/percent-encoding@2.3.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "name": "pin-project-lite", - "version": "0.2.16", - "description": "A lightweight version of pin-project written with declarative macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project-lite@0.2.16", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project-lite" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "author": "Josef Brandl ", - "name": "pin-utils", - "version": "0.1.0", - "description": "Utilities for pinning ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/pin-utils@0.1.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/pin-utils" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/pin-utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "name": "portable-atomic", - "version": "1.13.0", - "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/portable-atomic@1.13.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/portable-atomic" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "author": "The ICU4X Project Developers", - "name": "potential_utf", - "version": "0.1.4", - "description": "Unvalidated string and character types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/potential_utf@0.1.4", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "author": "The CryptoCorrosion Contributors", - "name": "ppv-lite86", - "version": "0.2.21", - "description": "Cross-platform cryptography-oriented low-level SIMD library.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ppv-lite86@0.2.21", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/cryptocorrosion/cryptocorrosion" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "author": "David Tolnay , Alex Crichton ", - "name": "proc-macro2", - "version": "1.0.106", - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/proc-macro2@1.0.106", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/proc-macro2" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/proc-macro2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "name": "quinn-proto", - "version": "0.11.14", - "description": "State machine for the QUIC transport protocol", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn-proto@0.11.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "name": "quinn-udp", - "version": "0.5.14", - "description": "UDP sockets with ECN information for the QUIC transport protocol", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn-udp@0.5.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "name": "quinn", - "version": "0.11.9", - "description": "Versatile QUIC transport protocol implementation", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn@0.11.9", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "author": "David Tolnay ", - "name": "quote", - "version": "1.0.44", - "description": "Quasi-quoting macro quote!(...)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quote@1.0.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quote/" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/quote" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "author": "The Rand Project Developers, The Rust Project Developers", - "name": "rand", - "version": "0.9.2", - "description": "Random number generators and other randomness functionality. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand@0.9.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "author": "The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors", - "name": "rand_chacha", - "version": "0.9.0", - "description": "ChaCha random number generator ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand_chacha@0.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand_chacha" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5", - "author": "The Rand Project Developers, The Rust Project Developers", - "name": "rand_core", - "version": "0.9.5", - "description": "Core random number generator traits and tools for implementation. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand_core@0.9.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand_core" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "author": "Sean McArthur ", - "name": "reqwest", - "version": "0.12.28", - "description": "higher level HTTP client library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/reqwest@0.12.28", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/reqwest" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/reqwest" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "name": "ring", - "version": "0.17.14", - "description": "An experiment.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 AND ISC" - } - ], - "purl": "pkg:cargo/ring@0.17.14", - "externalReferences": [ - { - "type": "other", - "url": "ring_core_0_17_14_" - }, - { - "type": "vcs", - "url": "https://github.com/briansmith/ring" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "author": "The Rust Project Developers", - "name": "rustc-hash", - "version": "2.1.1", - "description": "A speedy, non-cryptographic hashing algorithm used by rustc", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/rustc-hash@2.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/rustc-hash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4", - "author": "Dan Gohman , Jakub Konka ", - "name": "rustix", - "version": "1.1.4", - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/rustix@1.1.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rustix" - }, - { - "type": "vcs", - "url": "https://github.com/bytecodealliance/rustix" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "name": "rustls-pki-types", - "version": "1.14.0", - "description": "Shared types for the rustls PKI ecosystem", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rustls-pki-types@1.14.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rustls-pki-types" - }, - { - "type": "website", - "url": "https://github.com/rustls/pki-types" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/pki-types" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "name": "rustls-webpki", - "version": "0.103.9", - "description": "Web PKI X.509 Certificate Verification.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/rustls-webpki@0.103.9", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rustls/webpki" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "name": "rustls", - "version": "0.23.36", - "description": "Rustls is a modern TLS library written in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR ISC OR MIT" - } - ], - "purl": "pkg:cargo/rustls@0.23.36", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/rustls/rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "author": "David Tolnay ", - "name": "ryu", - "version": "1.0.22", - "description": "Fast floating point to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR BSL-1.0" - } - ], - "purl": "pkg:cargo/ryu@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ryu" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/ryu" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "author": "bluss", - "name": "scopeguard", - "version": "1.2.0", - "description": "A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/scopeguard@1.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/scopeguard/" - }, - { - "type": "vcs", - "url": "https://github.com/bluss/scopeguard" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde", - "version": "1.0.228", - "description": "A generic serialization/deserialization framework", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_core", - "version": "1.0.228", - "description": "Serde traits only, with no support for derive -- use the `serde` crate instead", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_core@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_core" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_derive", - "version": "1.0.228", - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_derive@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://serde.rs/derive.html" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_json", - "version": "1.0.149", - "description": "A JSON serialization file format", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_json@1.0.149", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_json" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/json" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "author": "Anthony Ramine ", - "name": "serde_urlencoded", - "version": "0.7.1", - "description": "`x-www-form-urlencoded` meets Serde", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_urlencoded@0.7.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/" - }, - { - "type": "vcs", - "url": "https://github.com/nox/serde_urlencoded" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "author": "comex , Fenhl , Adrian Taylor , Alex Touchet , Daniel Parks , Garrett Berg ", - "name": "shlex", - "version": "1.3.0", - "description": "Split a string into shell words, like Python's shlex.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/shlex@1.3.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/comex/rust-shlex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "author": "Michal 'vorner' Vaner , Masaki Hara ", - "name": "signal-hook-registry", - "version": "1.4.8", - "description": "Backend crate for signal-hook", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/signal-hook-registry@1.4.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/signal-hook-registry" - }, - { - "type": "vcs", - "url": "https://github.com/vorner/signal-hook" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8", - "author": "Marvin Countryman ", - "name": "simd-adler32", - "version": "0.3.8", - "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/simd-adler32@0.3.8", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/mcountryman/simd-adler32" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "author": "Carl Lerche ", - "name": "slab", - "version": "0.4.11", - "description": "Pre-allocated storage for a uniform data type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/slab@0.4.11", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "author": "The Servo Project Developers", - "name": "smallvec", - "version": "1.15.1", - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/smallvec@1.15.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/smallvec/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-smallvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "author": "Alex Crichton , Thomas de Zeeuw ", - "name": "socket2", - "version": "0.6.2", - "description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/socket2@0.6.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/socket2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/socket2" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/socket2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "author": "Robert Grosse ", - "name": "stable_deref_trait", - "version": "1.2.1", - "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/stable_deref_trait@1.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/stable_deref_trait/1.2.1/stable_deref_trait" - }, - { - "type": "vcs", - "url": "https://github.com/storyyeller/stable_deref_trait" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "author": "Danny Guo , maxbachmann ", - "name": "strsim", - "version": "0.11.1", - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/strsim@0.11.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/strsim/" - }, - { - "type": "website", - "url": "https://github.com/rapidfuzz/strsim-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rapidfuzz/strsim-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "author": "Isis Lovecruft , Henry de Valence ", - "name": "subtle", - "version": "2.6.1", - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - } - ], - "licenses": [ - { - "expression": "BSD-3-Clause" - } - ], - "purl": "pkg:cargo/subtle@2.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/subtle" - }, - { - "type": "website", - "url": "https://dalek.rs/" - }, - { - "type": "vcs", - "url": "https://github.com/dalek-cryptography/subtle" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "author": "David Tolnay ", - "name": "syn", - "version": "2.0.114", - "description": "Parser for Rust source code", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/syn@2.0.114", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/syn" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/syn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "author": "Actyx AG ", - "name": "sync_wrapper", - "version": "1.0.2", - "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/sync_wrapper@1.0.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "website", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "vcs", - "url": "https://github.com/Actyx/sync_wrapper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2", - "author": "Nika Layzell ", - "name": "synstructure", - "version": "0.13.2", - "description": "Helper methods and macros for custom derives", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/synstructure@0.13.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/synstructure" - }, - { - "type": "vcs", - "url": "https://github.com/mystor/synstructure" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "author": "Alex Crichton ", - "name": "tar", - "version": "0.4.44", - "description": "A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ensure that the entire contents are never required to be entirely resident in memory all at once. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tar@0.4.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tar" - }, - { - "type": "website", - "url": "https://github.com/alexcrichton/tar-rs" - }, - { - "type": "vcs", - "url": "https://github.com/alexcrichton/tar-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18", - "author": "David Tolnay ", - "name": "thiserror-impl", - "version": "2.0.18", - "description": "Implementation detail of the `thiserror` crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror-impl@2.0.18", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "author": "David Tolnay ", - "name": "thiserror", - "version": "2.0.18", - "description": "derive(Error)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror@2.0.18", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thiserror" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "author": "The ICU4X Project Developers", - "name": "tinystr", - "version": "0.8.2", - "description": "A small ASCII-only bounded length string representation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/tinystr@0.8.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "author": "Lokathor ", - "name": "tinyvec", - "version": "1.10.0", - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" - } - ], - "licenses": [ - { - "expression": "Zlib OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/tinyvec@1.10.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Lokathor/tinyvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "author": "Soveu ", - "name": "tinyvec_macros", - "version": "0.1.1", - "description": "Some macros for tiny containers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0 OR Zlib" - } - ], - "purl": "pkg:cargo/tinyvec_macros@0.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Soveu/tinyvec_macros" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "author": "Tokio Contributors ", - "name": "tokio-macros", - "version": "2.6.0", - "description": "Tokio's proc macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-macros@2.6.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "name": "tokio-rustls", - "version": "0.26.4", - "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tokio-rustls@0.26.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tokio-rustls" - }, - { - "type": "website", - "url": "https://github.com/rustls/tokio-rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/tokio-rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "author": "Tokio Contributors ", - "name": "tokio-util", - "version": "0.7.18", - "description": "Additional utilities for working with Tokio. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-util@0.7.18", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "author": "Tokio Contributors ", - "name": "tokio", - "version": "1.50.0", - "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio@1.50.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "author": "Tower Maintainers ", - "name": "tower-http", - "version": "0.6.8", - "description": "Tower middleware and utilities for HTTP clients and servers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-http@0.6.8", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower-http" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower-http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-layer", - "version": "0.3.3", - "description": "Decorates a `Service` to allow easy composition between `Service`s. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-layer@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-layer/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-service", - "version": "0.3.3", - "description": "Trait representing an asynchronous, request / response based, client or server. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-service@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-service/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "author": "Tower Maintainers ", - "name": "tower", - "version": "0.5.3", - "description": "Tower is a library of modular and reusable components for building robust clients and servers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower@0.5.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "author": "Tokio Contributors , Eliza Weisman , David Barsky ", - "name": "tracing-attributes", - "version": "0.1.31", - "description": "Procedural macro attributes for automatically instrumenting functions. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-attributes@0.1.31", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "author": "Tokio Contributors ", - "name": "tracing-core", - "version": "0.1.36", - "description": "Core primitives for application-level tracing. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-core@0.1.36", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "author": "Eliza Weisman , Tokio Contributors ", - "name": "tracing", - "version": "0.1.44", - "description": "Application-level tracing for Rust. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing@0.1.44", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "author": "Sean McArthur ", - "name": "try-lock", - "version": "0.2.5", - "description": "A lightweight atomic lock.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/try-lock@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/try-lock" - }, - { - "type": "website", - "url": "https://github.com/seanmonstar/try-lock" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/try-lock" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "author": "David Tolnay ", - "name": "unicode-ident", - "version": "1.0.22", - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" - } - ], - "licenses": [ - { - "expression": "(MIT OR Apache-2.0) AND Unicode-3.0" - } - ], - "purl": "pkg:cargo/unicode-ident@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/unicode-ident" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/unicode-ident" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "author": "kwantam , Manish Goregaokar ", - "name": "unicode-width", - "version": "0.2.2", - "description": "Determine displayed width of `char` and `str` types according to Unicode Standard Annex #11 rules. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/unicode-width@0.2.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/unicode-rs/unicode-width" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-rs/unicode-width" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2", - "author": "Fabio Valentini , Benjamin Sago ", - "name": "unit-prefix", - "version": "0.5.2", - "description": "Format numbers with metric and binary unit prefixes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/unit-prefix@0.5.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://codeberg.org/commons-rs/unit-prefix" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "author": "Brian Smith ", - "name": "untrusted", - "version": "0.9.0", - "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/untrusted@0.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://briansmith.org/rustdoc/untrusted/" - }, - { - "type": "vcs", - "url": "https://github.com/briansmith/untrusted" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "author": "The rust-url developers", - "name": "url", - "version": "2.5.8", - "description": "URL library for Rust, based on the WHATWG URL Standard", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/url@2.5.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/url" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "author": "Henri Sivonen ", - "name": "utf8_iter", - "version": "1.0.4", - "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/utf8_iter@1.0.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/utf8_iter/" - }, - { - "type": "website", - "url": "https://docs.rs/utf8_iter/" - }, - { - "type": "vcs", - "url": "https://github.com/hsivonen/utf8_iter" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "author": "Joe Wilm , Christian Duerr ", - "name": "utf8parse", - "version": "0.2.2", - "description": "Table-driven UTF-8 parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/utf8parse@0.2.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/utf8parse/" - }, - { - "type": "vcs", - "url": "https://github.com/alacritty/vte" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "author": "Sean McArthur ", - "name": "want", - "version": "0.3.1", - "description": "Detect when another Future wants a result.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/want@0.3.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/want" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/want" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5", - "name": "webpki-roots", - "version": "1.0.5", - "description": "Mozilla's CA root certificates for use with webpki", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" - } - ], - "licenses": [ - { - "expression": "CDLA-Permissive-2.0" - } - ], - "purl": "pkg:cargo/webpki-roots@1.0.5", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/rustls/webpki-roots" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/webpki-roots" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "author": "The ICU4X Project Developers", - "name": "writeable", - "version": "0.6.2", - "description": "A more efficient alternative to fmt::Display", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/writeable@0.6.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1", - "author": "Steven Allen ", - "name": "xattr", - "version": "1.6.1", - "description": "unix extended filesystem attributes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/xattr@1.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/xattr" - }, - { - "type": "vcs", - "url": "https://github.com/Stebalien/xattr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "author": "Manish Goregaokar ", - "name": "yoke-derive", - "version": "0.8.1", - "description": "Custom derive for the yoke crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/yoke-derive@0.8.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "author": "Manish Goregaokar ", - "name": "yoke", - "version": "0.8.1", - "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/yoke@0.8.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37", - "author": "Joshua Liebow-Feeser , Jack Wrenn ", - "name": "zerocopy", - "version": "0.8.37", - "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac" - } - ], - "licenses": [ - { - "expression": "BSD-2-Clause OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zerocopy@0.8.37", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/google/zerocopy" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "author": "Manish Goregaokar ", - "name": "zerofrom-derive", - "version": "0.1.6", - "description": "Custom derive for the zerofrom crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerofrom-derive@0.1.6", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "author": "Manish Goregaokar ", - "name": "zerofrom", - "version": "0.1.6", - "description": "ZeroFrom trait for constructing", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerofrom@0.1.6", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2", - "author": "The RustCrypto Project Developers", - "name": "zeroize", - "version": "1.8.2", - "description": "Securely clear secrets from memory with a simple trait built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM! ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zeroize@1.8.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/RustCrypto/utils/tree/master/zeroize" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3", - "author": "The RustCrypto Project Developers", - "name": "zeroize_derive", - "version": "1.4.3", - "description": "Custom derive support for zeroize", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zeroize_derive@1.4.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils/tree/master/zeroize/derive" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "author": "The ICU4X Project Developers", - "name": "zerotrie", - "version": "0.2.3", - "description": "A data structure that efficiently maps strings to integers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerotrie@0.2.3", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2", - "author": "Manish Goregaokar ", - "name": "zerovec-derive", - "version": "0.11.2", - "description": "Custom derive for the zerovec crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerovec-derive@0.11.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5", - "author": "The ICU4X Project Developers", - "name": "zerovec", - "version": "0.11.5", - "description": "Zero-copy vector backed by a byte array", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerovec@0.11.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2", - "name": "zlib-rs", - "version": "0.6.2", - "description": "A memory-safe zlib implementation written in rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c745c48e1007337ed136dc99df34128b9faa6ed542d80a1c673cf55a6d7236c8" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/zlib-rs@0.6.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/trifectatechfoundation/zlib-rs" - }, - { - "type": "vcs", - "url": "https://github.com/trifectatechfoundation/zlib-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "author": "David Tolnay ", - "name": "zmij", - "version": "1.0.17", - "description": "A double-to-string conversion algorithm based on Schubfach and yy", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/zmij@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/zmij" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/zmij" - } - ] - } - ], - "dependencies": [ - { - "ref": "path+file:///srv/projects/nora/nora-cli#0.2.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "dependsOn": [] - } - ] -} \ No newline at end of file diff --git a/nora-registry/nora-registry.cdx.json b/nora-registry/nora-registry.cdx.json deleted file mode 100644 index 609320a..0000000 --- a/nora-registry/nora-registry.cdx.json +++ /dev/null @@ -1,9031 +0,0 @@ -{ - "bomFormat": "CycloneDX", - "specVersion": "1.3", - "version": 1, - "serialNumber": "urn:uuid:d2e312ad-4d9f-4dd4-b75b-4129f8978b11", - "metadata": { - "timestamp": "2026-03-16T13:29:38.108725911Z", - "tools": [ - { - "vendor": "CycloneDX", - "name": "cargo-cyclonedx", - "version": "0.5.8" - } - ], - "authors": [ - { - "name": "DevITWay", - "email": "devitway@gmail.com" - } - ], - "component": { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-registry#0.2.31", - "author": "DevITWay ", - "name": "nora-registry", - "version": "0.2.31", - "description": "Cloud-Native Artifact Registry - Fast, lightweight, multi-protocol", - "scope": "required", - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nora-registry@0.2.31?download_url=file://.", - "externalReferences": [ - { - "type": "website", - "url": "https://getnora.io" - }, - { - "type": "vcs", - "url": "https://github.com/getnora-io/nora" - } - ], - "components": [ - { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-registry#0.2.31 bin-target-0", - "name": "nora", - "version": "0.2.31", - "purl": "pkg:cargo/nora-registry@0.2.31?download_url=file://.#src/main.rs" - } - ] - }, - "properties": [ - { - "name": "cdx:rustc:sbom:target:triple", - "value": "x86_64-unknown-linux-gnu" - } - ] - }, - "components": [ - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "author": "Jonas Schievink , oyvindln ", - "name": "adler2", - "version": "2.0.1", - "description": "A simple clean-room implementation of the Adler-32 checksum", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - } - ], - "licenses": [ - { - "expression": "0BSD OR MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/adler2@2.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/adler2/" - }, - { - "type": "vcs", - "url": "https://github.com/oyvindln/adler2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "author": "Andrew Gallant ", - "name": "aho-corasick", - "version": "1.1.4", - "description": "Fast multiple substring searching.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/aho-corasick@1.1.4", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/BurntSushi/aho-corasick" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/aho-corasick" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "author": "Zakarum ", - "name": "allocator-api2", - "version": "0.2.21", - "description": "Mirror of Rust's allocator API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/allocator-api2@0.2.21", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/allocator-api2" - }, - { - "type": "website", - "url": "https://github.com/zakarumych/allocator-api2" - }, - { - "type": "vcs", - "url": "https://github.com/zakarumych/allocator-api2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "name": "anstream", - "version": "0.6.21", - "description": "IO stream adapters for writing colored text that will gracefully degrade according to your terminal's capabilities.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstream@0.6.21", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "name": "anstyle-parse", - "version": "0.2.7", - "description": "Parse ANSI Style Escapes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle-parse@0.2.7", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "name": "anstyle-query", - "version": "1.1.5", - "description": "Look up colored console capabilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle-query@1.1.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "name": "anstyle", - "version": "1.0.13", - "description": "ANSI text styling", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/anstyle@1.0.13", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "author": "David Tolnay ", - "name": "async-trait", - "version": "0.1.89", - "description": "Type erasure for async trait methods", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/async-trait@0.1.89", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/async-trait" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/async-trait" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "author": "Stjepan Glavina , Contributors to futures-rs", - "name": "atomic-waker", - "version": "1.1.2", - "description": "A synchronization primitive for task wakeup", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/atomic-waker@1.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/smol-rs/atomic-waker" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0", - "author": "Josh Stone ", - "name": "autocfg", - "version": "1.5.0", - "description": "Automatic cfg for Rust compiler features", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/autocfg@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/autocfg/" - }, - { - "type": "vcs", - "url": "https://github.com/cuviper/autocfg" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "name": "axum-core", - "version": "0.5.6", - "description": "Core types and traits for axum", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/axum-core@0.5.6", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/axum" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/axum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "name": "axum", - "version": "0.8.8", - "description": "Web framework that focuses on ergonomics and modularity", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/axum@0.8.8", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/axum" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/axum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "author": "Marshall Pierce ", - "name": "base64", - "version": "0.22.1", - "description": "encodes and decodes base64 as bytes or utf8", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/base64@0.22.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/base64" - }, - { - "type": "vcs", - "url": "https://github.com/marshallpierce/rust-base64" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bcrypt@0.19.0", - "author": "Vincent Prouillet ", - "name": "bcrypt", - "version": "0.19.0", - "description": "Easily hash and verify passwords using bcrypt", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "523ab528ce3a7ada6597f8ccf5bd8d85ebe26d5edf311cad4d1d3cfb2d357ac6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/bcrypt@0.19.0", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/Keats/rust-bcrypt" - }, - { - "type": "vcs", - "url": "https://github.com/Keats/rust-bcrypt" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "author": "The Rust Project Developers", - "name": "bitflags", - "version": "2.10.0", - "description": "A macro to generate structures which behave like bitflags. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/bitflags@2.10.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/bitflags" - }, - { - "type": "website", - "url": "https://github.com/bitflags/bitflags" - }, - { - "type": "vcs", - "url": "https://github.com/bitflags/bitflags" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "author": "RustCrypto Developers", - "name": "block-buffer", - "version": "0.10.4", - "description": "Buffer type for block processing of data", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/block-buffer@0.10.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/block-buffer" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#blowfish@0.9.1", - "author": "RustCrypto Developers", - "name": "blowfish", - "version": "0.9.1", - "description": "Blowfish block cipher", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/blowfish@0.9.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/blowfish" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/block-ciphers" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.19.1", - "author": "Nick Fitzgerald ", - "name": "bumpalo", - "version": "3.19.1", - "description": "A fast bump allocation arena for Rust.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/bumpalo@3.19.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/bumpalo" - }, - { - "type": "vcs", - "url": "https://github.com/fitzgen/bumpalo" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "author": "Andrew Gallant ", - "name": "byteorder", - "version": "1.5.0", - "description": "Library for reading/writing numbers in big-endian and little-endian.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/byteorder@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/byteorder" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/byteorder" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/byteorder" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "author": "Carl Lerche , Sean McArthur ", - "name": "bytes", - "version": "1.11.1", - "description": "Types and traits for working with bytes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/bytes@1.11.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/bytes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "author": "Alex Crichton ", - "name": "cc", - "version": "1.2.55", - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code. ", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cc@1.2.55", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cc" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/cc-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/cc-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "author": "Alex Crichton ", - "name": "cfg-if", - "version": "1.0.4", - "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cfg-if@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/cfg-if" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "author": "Zicklag ", - "name": "cfg_aliases", - "version": "0.2.1", - "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/cfg_aliases@0.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cfg_aliases" - }, - { - "type": "website", - "url": "https://github.com/katharostech/cfg_aliases" - }, - { - "type": "vcs", - "url": "https://github.com/katharostech/cfg_aliases" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "name": "chrono", - "version": "0.4.44", - "description": "Date and time library for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/chrono@0.4.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/chrono/" - }, - { - "type": "website", - "url": "https://github.com/chronotope/chrono" - }, - { - "type": "vcs", - "url": "https://github.com/chronotope/chrono" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "author": "RustCrypto Developers", - "name": "cipher", - "version": "0.4.4", - "description": "Traits for describing block ciphers and stream ciphers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cipher@0.4.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cipher" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "name": "clap", - "version": "4.5.60", - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap@4.5.60", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "name": "clap_builder", - "version": "4.5.60", - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_builder@4.5.60", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55", - "name": "clap_derive", - "version": "4.5.55", - "description": "Parse command line argument by defining a struct, derive crate.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_derive@4.5.55", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "name": "clap_lex", - "version": "1.0.0", - "description": "Minimal, flexible command line parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/clap_lex@1.0.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/clap-rs/clap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "name": "colorchoice", - "version": "1.0.4", - "description": "Global override of color control", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/colorchoice@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-cli/anstyle.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "name": "console", - "version": "0.16.2", - "description": "A terminal and console abstraction for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/console@0.16.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/console" - }, - { - "type": "website", - "url": "https://github.com/console-rs/console" - }, - { - "type": "vcs", - "url": "https://github.com/console-rs/console" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "author": "RustCrypto Developers", - "name": "cpufeatures", - "version": "0.2.17", - "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cpufeatures@0.2.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cpufeatures" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "author": "Sam Rijs , Alex Crichton ", - "name": "crc32fast", - "version": "1.5.0", - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crc32fast@1.5.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/srijs/rust-crc32fast" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "name": "crossbeam-utils", - "version": "0.8.21", - "description": "Utilities for concurrent programming", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crossbeam-utils@0.8.21", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils" - }, - { - "type": "vcs", - "url": "https://github.com/crossbeam-rs/crossbeam" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "author": "RustCrypto Developers", - "name": "crypto-common", - "version": "0.1.7", - "description": "Common cryptographic traits", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crypto-common@0.1.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/crypto-common" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "author": "Acrimon ", - "name": "dashmap", - "version": "6.1.0", - "description": "Blazing fast concurrent HashMap for Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/dashmap@6.1.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/dashmap" - }, - { - "type": "website", - "url": "https://github.com/xacrimon/dashmap" - }, - { - "type": "vcs", - "url": "https://github.com/xacrimon/dashmap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "author": "RustCrypto Developers", - "name": "digest", - "version": "0.10.7", - "description": "Traits for cryptographic hash functions and message authentication codes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/digest@0.10.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/digest" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "author": "Jane Lusby ", - "name": "displaydoc", - "version": "0.2.5", - "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/displaydoc@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/displaydoc" - }, - { - "type": "website", - "url": "https://github.com/yaahc/displaydoc" - }, - { - "type": "vcs", - "url": "https://github.com/yaahc/displaydoc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "name": "equivalent", - "version": "1.0.2", - "description": "Traits for key comparison in maps.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/equivalent@1.0.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/equivalent" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "author": "Chris Wong , Dan Gohman ", - "name": "errno", - "version": "0.3.14", - "description": "Cross-platform interface to the `errno` variable.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/errno@0.3.14", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/errno" - }, - { - "type": "vcs", - "url": "https://github.com/lambda-fairy/rust-errno" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "author": "Alex Crichton ", - "name": "filetime", - "version": "0.2.27", - "description": "Platform-agnostic accessors of timestamps in File metadata ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/filetime@0.2.27", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/filetime" - }, - { - "type": "website", - "url": "https://github.com/alexcrichton/filetime" - }, - { - "type": "vcs", - "url": "https://github.com/alexcrichton/filetime" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "name": "find-msvc-tools", - "version": "0.1.9", - "description": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/find-msvc-tools@0.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/find-msvc-tools" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/cc-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "author": "Alex Crichton , Josh Triplett ", - "name": "flate2", - "version": "1.1.9", - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/flate2@1.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/flate2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/flate2-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/flate2-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "author": "Alex Crichton ", - "name": "fnv", - "version": "1.0.7", - "description": "Fowler–Noll–Vo hash function", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/fnv@1.0.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://doc.servo.org/fnv/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-fnv" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "author": "Orson Peters ", - "name": "foldhash", - "version": "0.2.0", - "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/foldhash@0.2.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/orlp/foldhash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "author": "The rust-url developers", - "name": "form_urlencoded", - "version": "1.2.2", - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/form_urlencoded@1.2.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#forwarded-header-value@0.1.1", - "author": "James Brown ", - "name": "forwarded-header-value", - "version": "0.1.1", - "description": "Parser for values from the Forwarded header (RFC 7239)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/forwarded-header-value@0.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/EasyPost/rust-forwarded-header-value" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "name": "futures-channel", - "version": "0.3.31", - "description": "Channels for asynchronous communication using futures-rs. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-channel@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "name": "futures-core", - "version": "0.3.31", - "description": "The core traits and types in for the `futures` library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-core@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "name": "futures-io", - "version": "0.3.31", - "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-io@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "name": "futures-macro", - "version": "0.3.31", - "description": "The futures-rs procedural macro implementations. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-macro@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "name": "futures-sink", - "version": "0.3.31", - "description": "The asynchronous `Sink` trait for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-sink@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "name": "futures-task", - "version": "0.3.31", - "description": "Tools for working with tasks. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-task@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-timer@3.0.3", - "author": "Alex Crichton ", - "name": "futures-timer", - "version": "3.0.3", - "description": "Timeouts for futures. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-timer@3.0.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/futures-timer" - }, - { - "type": "website", - "url": "https://github.com/async-rs/futures-timer" - }, - { - "type": "vcs", - "url": "https://github.com/async-rs/futures-timer" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "name": "futures-util", - "version": "0.3.31", - "description": "Common utilities and extension traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-util@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "author": "Bartłomiej Kamiński , Aaron Trent ", - "name": "generic-array", - "version": "0.14.7", - "description": "Generic types implementing functionality of arrays", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/generic-array@0.14.7", - "externalReferences": [ - { - "type": "documentation", - "url": "http://fizyk20.github.io/generic-array/generic_array/" - }, - { - "type": "vcs", - "url": "https://github.com/fizyk20/generic-array.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.2.17", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.2.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.3.4", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.3.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.4.1", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.4.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "author": "Andreas Fuchs ", - "name": "governor", - "version": "0.10.4", - "description": "A rate-limiting implementation in Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9efcab3c1958580ff1f25a2a41be1668f7603d849bb63af523b208a3cc1223b8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/governor@0.10.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/governor" - }, - { - "type": "website", - "url": "https://github.com/boinkor-net/governor" - }, - { - "type": "vcs", - "url": "https://github.com/boinkor-net/governor.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "author": "Carl Lerche , Sean McArthur ", - "name": "h2", - "version": "0.4.13", - "description": "An HTTP/2 client and server", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/h2@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/h2" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/h2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "author": "Amanieu d'Antras ", - "name": "hashbrown", - "version": "0.14.5", - "description": "A Rust port of Google's SwissTable hash map", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hashbrown@0.14.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/hashbrown" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "author": "Amanieu d'Antras ", - "name": "hashbrown", - "version": "0.16.1", - "description": "A Rust port of Google's SwissTable hash map", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hashbrown@0.16.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/hashbrown" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "name": "heck", - "version": "0.5.0", - "description": "heck is a case conversion library.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/heck@0.5.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/withoutboats/heck" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "author": "KokaKiwi ", - "name": "hex", - "version": "0.4.3", - "description": "Encoding and decoding data into/from hexadecimal representation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hex@0.4.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hex/" - }, - { - "type": "vcs", - "url": "https://github.com/KokaKiwi/rust-hex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "author": "RustCrypto Developers", - "name": "hmac", - "version": "0.12.1", - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hmac@0.12.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hmac" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/MACs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body-util", - "version": "0.1.3", - "description": "Combinators and adapters for HTTP request or response bodies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body-util@0.1.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body-util" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body", - "version": "1.0.1", - "description": "Trait representing an asynchronous, streaming, HTTP request or response body. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body@1.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "author": "Alex Crichton , Carl Lerche , Sean McArthur ", - "name": "http", - "version": "1.4.0", - "description": "A set of types for representing HTTP requests and responses. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/http@1.4.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "author": "Sean McArthur ", - "name": "httparse", - "version": "1.10.1", - "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httparse@1.10.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/httparse" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/httparse" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "author": "Pyfisch ", - "name": "httpdate", - "version": "1.0.3", - "description": "HTTP date parsing and formatting", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httpdate@1.0.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/pyfisch/httpdate" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "name": "hyper-rustls", - "version": "0.27.7", - "description": "Rustls+hyper integration for pure rust HTTPS", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR ISC OR MIT" - } - ], - "purl": "pkg:cargo/hyper-rustls@0.27.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-rustls/" - }, - { - "type": "website", - "url": "https://github.com/rustls/hyper-rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/hyper-rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-timeout@0.5.2", - "author": "Herman J. Radtke III ", - "name": "hyper-timeout", - "version": "0.5.2", - "description": "A connect, read and write timeout aware connector to be used with hyper Client.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hyper-timeout@0.5.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://github.com/hjr3/hyper-timeout" - }, - { - "type": "website", - "url": "https://github.com/hjr3/hyper-timeout" - }, - { - "type": "vcs", - "url": "https://github.com/hjr3/hyper-timeout" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "author": "Sean McArthur ", - "name": "hyper-util", - "version": "0.1.19", - "description": "hyper utilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper-util@0.1.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-util" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper-util" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "author": "Sean McArthur ", - "name": "hyper", - "version": "1.8.1", - "description": "A protective and efficient HTTP library for all.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper@1.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "author": "Andrew Straw , René Kijewski , Ryan Lopopolo ", - "name": "iana-time-zone", - "version": "0.1.65", - "description": "get the IANA time zone for the current system", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/iana-time-zone@0.1.65", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/strawlab/iana-time-zone" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_collections", - "version": "2.1.1", - "description": "Collection of API for use in ICU libraries.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_collections@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_locale_core", - "version": "2.1.1", - "description": "API for managing Unicode Language and Locale Identifiers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_locale_core@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_normalizer", - "version": "2.1.1", - "description": "API for normalizing text into Unicode Normalization Forms", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_normalizer@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_normalizer_data", - "version": "2.1.1", - "description": "Data for the icu_normalizer crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_normalizer_data@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "author": "The ICU4X Project Developers", - "name": "icu_properties", - "version": "2.1.2", - "description": "Definitions for Unicode properties", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_properties@2.1.2", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "author": "The ICU4X Project Developers", - "name": "icu_properties_data", - "version": "2.1.2", - "description": "Data for the icu_properties crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_properties_data@2.1.2", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "author": "The ICU4X Project Developers", - "name": "icu_provider", - "version": "2.1.1", - "description": "Trait and struct definitions for the ICU data provider", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/icu_provider@2.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "author": "The rust-url developers", - "name": "idna", - "version": "1.1.0", - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/idna@1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "author": "The rust-url developers", - "name": "idna_adapter", - "version": "1.2.1", - "description": "Back end adapter for idna", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/idna_adapter@1.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/idna_adapter/latest/idna_adapter/" - }, - { - "type": "website", - "url": "https://docs.rs/crate/idna_adapter/latest" - }, - { - "type": "vcs", - "url": "https://github.com/hsivonen/idna_adapter" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "name": "indexmap", - "version": "2.13.0", - "description": "A hash table with consistent order and fast iteration.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/indexmap@2.13.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indexmap/" - }, - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/indexmap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "name": "indicatif", - "version": "0.18.4", - "description": "A progress bar and cli reporting library for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/indicatif@0.18.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indicatif" - }, - { - "type": "vcs", - "url": "https://github.com/console-rs/indicatif" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "author": "RustCrypto Developers", - "name": "inout", - "version": "0.1.4", - "description": "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/inout@0.1.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/inout" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "author": "Kris Price ", - "name": "ipnet", - "version": "2.11.0", - "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ipnet@2.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ipnet" - }, - { - "type": "vcs", - "url": "https://github.com/krisprice/ipnet" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "author": "YOSHIOKA Takuma ", - "name": "iri-string", - "version": "0.7.10", - "description": "IRI as string types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/iri-string@0.7.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/lo48576/iri-string" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "name": "is_terminal_polyfill", - "version": "1.70.2", - "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/is_terminal_polyfill@1.70.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/polyfill-rs/is_terminal_polyfill" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "author": "David Tolnay ", - "name": "itoa", - "version": "1.0.17", - "description": "Fast integer primitive to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/itoa@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/itoa" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/itoa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "author": "Marvin Löbel ", - "name": "lazy_static", - "version": "1.5.0", - "description": "A macro for declaring lazily evaluated statics in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lazy_static@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/lazy_static" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/lazy-static.rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "author": "The Rust Project Developers", - "name": "libc", - "version": "0.2.182", - "description": "Raw FFI bindings to platform libraries like libc.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/libc@0.2.182", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/libc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1", - "author": "Dan Gohman ", - "name": "linux-raw-sys", - "version": "0.12.1", - "description": "Generated bindings for Linux's userspace API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/linux-raw-sys@0.12.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/linux-raw-sys" - }, - { - "type": "vcs", - "url": "https://github.com/sunfishcode/linux-raw-sys" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "author": "The ICU4X Project Developers", - "name": "litemap", - "version": "0.8.1", - "description": "A key-value Map implementation based on a flat, sorted Vec.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/litemap@0.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/litemap" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "author": "Amanieu d'Antras ", - "name": "lock_api", - "version": "0.4.14", - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lock_api@0.4.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "author": "The Rust Project Developers", - "name": "log", - "version": "0.4.29", - "description": "A lightweight logging facade for Rust ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/log@0.4.29", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/log" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/log" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "author": "Benjamin Saunders ", - "name": "lru-slab", - "version": "0.1.2", - "description": "Pre-allocated storage with constant-time LRU tracking", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0 OR Zlib" - } - ], - "purl": "pkg:cargo/lru-slab@0.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Ralith/lru-slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "author": "Eliza Weisman ", - "name": "matchers", - "version": "0.2.0", - "description": "Regex matching on character and byte streams. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/matchers@0.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/matchers/" - }, - { - "type": "website", - "url": "https://github.com/hawkw/matchers" - }, - { - "type": "vcs", - "url": "https://github.com/hawkw/matchers" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "author": "Ibraheem Ahmed ", - "name": "matchit", - "version": "0.8.4", - "description": "A high performance, zero-copy URL router.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" - } - ], - "licenses": [ - { - "expression": "MIT AND BSD-3-Clause" - } - ], - "purl": "pkg:cargo/matchit@0.8.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/ibraheemdev/matchit" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "author": "Andrew Gallant , bluss", - "name": "memchr", - "version": "2.7.6", - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/memchr@2.7.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/memchr/" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/memchr" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/memchr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "author": "Sean McArthur ", - "name": "mime", - "version": "0.3.17", - "description": "Strongly Typed Mimes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/mime@0.3.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/mime" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/mime" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5", - "author": "Austin Bonander ", - "name": "mime_guess", - "version": "2.0.5", - "description": "A simple crate for detection of a file's MIME type by its extension.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/mime_guess@2.0.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/mime_guess/" - }, - { - "type": "vcs", - "url": "https://github.com/abonander/mime_guess" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "author": "Frommi , oyvindln , Rich Geldreich richgel99@gmail.com", - "name": "miniz_oxide", - "version": "0.8.9", - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" - } - ], - "licenses": [ - { - "expression": "MIT OR Zlib OR Apache-2.0" - } - ], - "purl": "pkg:cargo/miniz_oxide@0.8.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/miniz_oxide" - }, - { - "type": "website", - "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide" - }, - { - "type": "vcs", - "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "author": "Carl Lerche , Thomas de Zeeuw , Tokio Contributors ", - "name": "mio", - "version": "1.1.1", - "description": "Lightweight non-blocking I/O.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/mio@1.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/mio" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/mio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nonempty@0.7.0", - "author": "Alexis Sellier ", - "name": "nonempty", - "version": "0.7.0", - "description": "Correct by construction non-empty vector", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nonempty@0.7.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/cloudhead/nonempty" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nonzero_ext@0.3.0", - "author": "Andreas Fuchs ", - "name": "nonzero_ext", - "version": "0.3.0", - "description": "Extensions and additional traits for non-zero integer types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/nonzero_ext@0.3.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/nonzero_ext" - }, - { - "type": "vcs", - "url": "https://github.com/antifuchs/nonzero_ext" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "author": "ogham@bsago.me, Ryan Scheel (Havvy) , Josh Triplett , The Nushell Project Developers", - "name": "nu-ansi-term", - "version": "0.50.3", - "description": "Library for ANSI terminal colors and styles (bold, underline)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nu-ansi-term@0.50.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/nushell/nu-ansi-term" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "author": "The Rust Project Developers", - "name": "num-traits", - "version": "0.2.19", - "description": "Numeric traits for generic mathematics", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/num-traits@0.2.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/num-traits" - }, - { - "type": "website", - "url": "https://github.com/rust-num/num-traits" - }, - { - "type": "vcs", - "url": "https://github.com/rust-num/num-traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "author": "Aleksey Kladov ", - "name": "once_cell", - "version": "1.21.3", - "description": "Single assignment cells and lazy values.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/once_cell@1.21.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/once_cell" - }, - { - "type": "vcs", - "url": "https://github.com/matklad/once_cell" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "author": "Amanieu d'Antras ", - "name": "parking_lot", - "version": "0.12.5", - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot@0.12.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "author": "Amanieu d'Antras ", - "name": "parking_lot_core", - "version": "0.9.12", - "description": "An advanced API for creating custom synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot_core@0.9.12", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "author": "The rust-url developers", - "name": "percent-encoding", - "version": "2.3.2", - "description": "Percent encoding and decoding", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/percent-encoding@2.3.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "name": "pin-project-internal", - "version": "1.1.10", - "description": "Implementation detail of the `pin-project` crate. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project-internal@1.1.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "name": "pin-project-lite", - "version": "0.2.16", - "description": "A lightweight version of pin-project written with declarative macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project-lite@0.2.16", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project-lite" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "name": "pin-project", - "version": "1.1.10", - "description": "A crate for safe and ergonomic pin-projection. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project@1.1.10", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "author": "Josef Brandl ", - "name": "pin-utils", - "version": "0.1.0", - "description": "Utilities for pinning ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/pin-utils@0.1.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/pin-utils" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/pin-utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "name": "portable-atomic", - "version": "1.13.0", - "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/portable-atomic@1.13.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/portable-atomic" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "author": "The ICU4X Project Developers", - "name": "potential_utf", - "version": "0.1.4", - "description": "Unvalidated string and character types", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/potential_utf@0.1.4", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "author": "The CryptoCorrosion Contributors", - "name": "ppv-lite86", - "version": "0.2.21", - "description": "Cross-platform cryptography-oriented low-level SIMD library.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ppv-lite86@0.2.21", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/cryptocorrosion/cryptocorrosion" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "author": "David Tolnay , Alex Crichton ", - "name": "proc-macro2", - "version": "1.0.106", - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/proc-macro2@1.0.106", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/proc-macro2" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/proc-macro2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#prometheus@0.14.0", - "author": "overvenus@gmail.com, siddontang@gmail.com, vistaswx@gmail.com", - "name": "prometheus", - "version": "0.14.0", - "description": "Prometheus instrumentation library for Rust applications.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/prometheus@0.14.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/prometheus" - }, - { - "type": "website", - "url": "https://github.com/tikv/rust-prometheus" - }, - { - "type": "vcs", - "url": "https://github.com/tikv/rust-prometheus" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf-support@3.7.2", - "author": "Stepan Koltsov ", - "name": "protobuf-support", - "version": "3.7.2", - "description": "Code supporting protobuf implementation. None of code in this crate is public API. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/protobuf-support@3.7.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://github.com/stepancheg/rust-protobuf/blob/master/README.md" - }, - { - "type": "website", - "url": "https://github.com/stepancheg/rust-protobuf/" - }, - { - "type": "vcs", - "url": "https://github.com/stepancheg/rust-protobuf/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf@3.7.2", - "author": "Stepan Koltsov ", - "name": "protobuf", - "version": "3.7.2", - "description": "Rust implementation of Google protocol buffers ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/protobuf@3.7.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://github.com/stepancheg/rust-protobuf/blob/master/README.md" - }, - { - "type": "website", - "url": "https://github.com/stepancheg/rust-protobuf/" - }, - { - "type": "vcs", - "url": "https://github.com/stepancheg/rust-protobuf/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quanta@0.12.6", - "author": "Toby Lawrence ", - "name": "quanta", - "version": "0.12.6", - "description": "high-speed timing library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/quanta@0.12.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quanta" - }, - { - "type": "website", - "url": "https://github.com/metrics-rs/quanta" - }, - { - "type": "vcs", - "url": "https://github.com/metrics-rs/quanta" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "name": "quinn-proto", - "version": "0.11.14", - "description": "State machine for the QUIC transport protocol", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn-proto@0.11.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "name": "quinn-udp", - "version": "0.5.14", - "description": "UDP sockets with ECN information for the QUIC transport protocol", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn-udp@0.5.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "name": "quinn", - "version": "0.11.9", - "description": "Versatile QUIC transport protocol implementation", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quinn@0.11.9", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/quinn-rs/quinn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "author": "David Tolnay ", - "name": "quote", - "version": "1.0.44", - "description": "Quasi-quoting macro quote!(...)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quote@1.0.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quote/" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/quote" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "author": "The Rand Project Developers, The Rust Project Developers", - "name": "rand", - "version": "0.9.2", - "description": "Random number generators and other randomness functionality. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand@0.9.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "author": "The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors", - "name": "rand_chacha", - "version": "0.9.0", - "description": "ChaCha random number generator ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand_chacha@0.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand_chacha" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5", - "author": "The Rand Project Developers, The Rust Project Developers", - "name": "rand_core", - "version": "0.9.5", - "description": "Core random number generator traits and tools for implementation. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rand_core@0.9.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rand_core" - }, - { - "type": "website", - "url": "https://rust-random.github.io/book" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/rand" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#raw-cpuid@11.6.0", - "author": "Gerd Zellweger ", - "name": "raw-cpuid", - "version": "11.6.0", - "description": "A library to parse the x86 CPUID instruction, written in rust with no external dependencies. The implementation closely resembles the Intel CPUID manual description. The library does only depend on libcore.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/raw-cpuid@11.6.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/raw-cpuid/" - }, - { - "type": "website", - "url": "https://github.com/gz/rust-cpuid" - }, - { - "type": "vcs", - "url": "https://github.com/gz/rust-cpuid" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex-automata", - "version": "0.4.13", - "description": "Automata construction and matching using regular expressions.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex-automata@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex-automata" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex/tree/master/regex-automata" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex-syntax", - "version": "0.8.8", - "description": "A regular expression parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex-syntax@0.8.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex-syntax" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex/tree/master/regex-syntax" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex", - "version": "1.12.2", - "description": "An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex@1.12.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "author": "Sean McArthur ", - "name": "reqwest", - "version": "0.12.28", - "description": "higher level HTTP client library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/reqwest@0.12.28", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/reqwest" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/reqwest" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "name": "ring", - "version": "0.17.14", - "description": "An experiment.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 AND ISC" - } - ], - "purl": "pkg:cargo/ring@0.17.14", - "externalReferences": [ - { - "type": "other", - "url": "ring_core_0_17_14_" - }, - { - "type": "vcs", - "url": "https://github.com/briansmith/ring" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.11.0", - "author": "pyrossh", - "name": "rust-embed-impl", - "version": "8.11.0", - "description": "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/rust-embed-impl@8.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rust-embed" - }, - { - "type": "vcs", - "url": "https://pyrossh.dev/repos/rust-embed" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "author": "pyrossh", - "name": "rust-embed-utils", - "version": "8.11.0", - "description": "Utilities for rust-embed", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/rust-embed-utils@8.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rust-embed" - }, - { - "type": "vcs", - "url": "https://pyrossh.dev/repos/rust-embed" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.11.0", - "author": "pyrossh", - "name": "rust-embed", - "version": "8.11.0", - "description": "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/rust-embed@8.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rust-embed" - }, - { - "type": "vcs", - "url": "https://pyrossh.dev/repos/rust-embed" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "author": "The Rust Project Developers", - "name": "rustc-hash", - "version": "2.1.1", - "description": "A speedy, non-cryptographic hashing algorithm used by rustc", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/rustc-hash@2.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/rustc-hash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4", - "author": "Dan Gohman , Jakub Konka ", - "name": "rustix", - "version": "1.1.4", - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/rustix@1.1.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rustix" - }, - { - "type": "vcs", - "url": "https://github.com/bytecodealliance/rustix" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "name": "rustls-pki-types", - "version": "1.14.0", - "description": "Shared types for the rustls PKI ecosystem", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/rustls-pki-types@1.14.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/rustls-pki-types" - }, - { - "type": "website", - "url": "https://github.com/rustls/pki-types" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/pki-types" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "name": "rustls-webpki", - "version": "0.103.9", - "description": "Web PKI X.509 Certificate Verification.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/rustls-webpki@0.103.9", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rustls/webpki" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "name": "rustls", - "version": "0.23.36", - "description": "Rustls is a modern TLS library written in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR ISC OR MIT" - } - ], - "purl": "pkg:cargo/rustls@0.23.36", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/rustls/rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "author": "David Tolnay ", - "name": "ryu", - "version": "1.0.22", - "description": "Fast floating point to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR BSL-1.0" - } - ], - "purl": "pkg:cargo/ryu@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ryu" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/ryu" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "author": "Andrew Gallant ", - "name": "same-file", - "version": "1.0.6", - "description": "A simple crate for determining whether two file paths point to the same file. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/same-file@1.0.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/same-file" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/same-file" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/same-file" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "author": "bluss", - "name": "scopeguard", - "version": "1.2.0", - "description": "A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/scopeguard@1.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/scopeguard/" - }, - { - "type": "vcs", - "url": "https://github.com/bluss/scopeguard" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde", - "version": "1.0.228", - "description": "A generic serialization/deserialization framework", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_core", - "version": "1.0.228", - "description": "Serde traits only, with no support for derive -- use the `serde` crate instead", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_core@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_core" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_derive", - "version": "1.0.228", - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_derive@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://serde.rs/derive.html" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_json", - "version": "1.0.149", - "description": "A JSON serialization file format", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_json@1.0.149", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_json" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/json" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "author": "David Tolnay ", - "name": "serde_path_to_error", - "version": "0.1.20", - "description": "Path to the element that failed to deserialize", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_path_to_error@0.1.20", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_path_to_error" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/path-to-error" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "name": "serde_spanned", - "version": "1.0.4", - "description": "Serde-compatible spanned Value", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_spanned@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "author": "Anthony Ramine ", - "name": "serde_urlencoded", - "version": "0.7.1", - "description": "`x-www-form-urlencoded` meets Serde", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_urlencoded@0.7.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/" - }, - { - "type": "vcs", - "url": "https://github.com/nox/serde_urlencoded" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "author": "RustCrypto Developers", - "name": "sha2", - "version": "0.10.9", - "description": "Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/sha2@0.10.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sha2" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/hashes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "author": "Eliza Weisman ", - "name": "sharded-slab", - "version": "0.1.7", - "description": "A lock-free concurrent slab. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/sharded-slab@0.1.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sharded-slab/" - }, - { - "type": "website", - "url": "https://github.com/hawkw/sharded-slab" - }, - { - "type": "vcs", - "url": "https://github.com/hawkw/sharded-slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "author": "comex , Fenhl , Adrian Taylor , Alex Touchet , Daniel Parks , Garrett Berg ", - "name": "shlex", - "version": "1.3.0", - "description": "Split a string into shell words, like Python's shlex.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/shlex@1.3.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/comex/rust-shlex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "author": "Michal 'vorner' Vaner , Masaki Hara ", - "name": "signal-hook-registry", - "version": "1.4.8", - "description": "Backend crate for signal-hook", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/signal-hook-registry@1.4.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/signal-hook-registry" - }, - { - "type": "vcs", - "url": "https://github.com/vorner/signal-hook" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8", - "author": "Marvin Countryman ", - "name": "simd-adler32", - "version": "0.3.8", - "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/simd-adler32@0.3.8", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/mcountryman/simd-adler32" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "author": "Carl Lerche ", - "name": "slab", - "version": "0.4.11", - "description": "Pre-allocated storage for a uniform data type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/slab@0.4.11", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "author": "The Servo Project Developers", - "name": "smallvec", - "version": "1.15.1", - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/smallvec@1.15.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/smallvec/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-smallvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "author": "Alex Crichton , Thomas de Zeeuw ", - "name": "socket2", - "version": "0.6.2", - "description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/socket2@0.6.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/socket2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/socket2" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/socket2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#spinning_top@0.3.0", - "author": "Philipp Oppermann ", - "name": "spinning_top", - "version": "0.3.0", - "description": "A simple spinlock crate based on the abstractions provided by `lock_api`.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/spinning_top@0.3.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-osdev/spinning_top" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "author": "Robert Grosse ", - "name": "stable_deref_trait", - "version": "1.2.1", - "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/stable_deref_trait@1.2.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/stable_deref_trait/1.2.1/stable_deref_trait" - }, - { - "type": "vcs", - "url": "https://github.com/storyyeller/stable_deref_trait" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "author": "Danny Guo , maxbachmann ", - "name": "strsim", - "version": "0.11.1", - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/strsim@0.11.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/strsim/" - }, - { - "type": "website", - "url": "https://github.com/rapidfuzz/strsim-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rapidfuzz/strsim-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "author": "Isis Lovecruft , Henry de Valence ", - "name": "subtle", - "version": "2.6.1", - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - } - ], - "licenses": [ - { - "expression": "BSD-3-Clause" - } - ], - "purl": "pkg:cargo/subtle@2.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/subtle" - }, - { - "type": "website", - "url": "https://dalek.rs/" - }, - { - "type": "vcs", - "url": "https://github.com/dalek-cryptography/subtle" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "author": "David Tolnay ", - "name": "syn", - "version": "2.0.114", - "description": "Parser for Rust source code", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/syn@2.0.114", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/syn" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/syn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "author": "Actyx AG ", - "name": "sync_wrapper", - "version": "1.0.2", - "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/sync_wrapper@1.0.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "website", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "vcs", - "url": "https://github.com/Actyx/sync_wrapper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2", - "author": "Nika Layzell ", - "name": "synstructure", - "version": "0.13.2", - "description": "Helper methods and macros for custom derives", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/synstructure@0.13.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/synstructure" - }, - { - "type": "vcs", - "url": "https://github.com/mystor/synstructure" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "author": "Alex Crichton ", - "name": "tar", - "version": "0.4.44", - "description": "A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ensure that the entire contents are never required to be entirely resident in memory all at once. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tar@0.4.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tar" - }, - { - "type": "website", - "url": "https://github.com/alexcrichton/tar-rs" - }, - { - "type": "vcs", - "url": "https://github.com/alexcrichton/tar-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "author": "David Tolnay ", - "name": "thiserror-impl", - "version": "1.0.69", - "description": "Implementation detail of the `thiserror` crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror-impl@1.0.69", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18", - "author": "David Tolnay ", - "name": "thiserror-impl", - "version": "2.0.18", - "description": "Implementation detail of the `thiserror` crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror-impl@2.0.18", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "author": "David Tolnay ", - "name": "thiserror", - "version": "1.0.69", - "description": "derive(Error)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror@1.0.69", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thiserror" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "author": "David Tolnay ", - "name": "thiserror", - "version": "2.0.18", - "description": "derive(Error)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thiserror@2.0.18", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thiserror" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/thiserror" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "author": "Amanieu d'Antras ", - "name": "thread_local", - "version": "1.1.9", - "description": "Per-object thread-local storage", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thread_local@1.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thread_local/" - }, - { - "type": "vcs", - "url": "https://github.com/Amanieu/thread_local-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "author": "The ICU4X Project Developers", - "name": "tinystr", - "version": "0.8.2", - "description": "A small ASCII-only bounded length string representation.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/tinystr@0.8.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "author": "Lokathor ", - "name": "tinyvec", - "version": "1.10.0", - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" - } - ], - "licenses": [ - { - "expression": "Zlib OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/tinyvec@1.10.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Lokathor/tinyvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "author": "Soveu ", - "name": "tinyvec_macros", - "version": "0.1.1", - "description": "Some macros for tiny containers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0 OR Zlib" - } - ], - "purl": "pkg:cargo/tinyvec_macros@0.1.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Soveu/tinyvec_macros" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "author": "Tokio Contributors ", - "name": "tokio-macros", - "version": "2.6.0", - "description": "Tokio's proc macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-macros@2.6.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "name": "tokio-rustls", - "version": "0.26.4", - "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tokio-rustls@0.26.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tokio-rustls" - }, - { - "type": "website", - "url": "https://github.com/rustls/tokio-rustls" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/tokio-rustls" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18", - "author": "Tokio Contributors ", - "name": "tokio-stream", - "version": "0.1.18", - "description": "Utilities to work with `Stream` and `tokio`. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-stream@0.1.18", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "author": "Tokio Contributors ", - "name": "tokio-util", - "version": "0.7.18", - "description": "Additional utilities for working with Tokio. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-util@0.7.18", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "author": "Tokio Contributors ", - "name": "tokio", - "version": "1.50.0", - "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio@1.50.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "name": "toml", - "version": "1.0.6+spec-1.1.0", - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides implementations of the standard Serialize/Deserialize traits for TOML data to facilitate deserializing and serializing Rust structures. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml@1.0.6+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "name": "toml_datetime", - "version": "1.0.0+spec-1.1.0", - "description": "A TOML-compatible datetime type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_datetime@1.0.0+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "name": "toml_parser", - "version": "1.0.9+spec-1.1.0", - "description": "Yet another format-preserving TOML parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_parser@1.0.9+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "name": "toml_writer", - "version": "1.0.6+spec-1.1.0", - "description": "A low-level interface for writing out TOML ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_writer@1.0.6+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tonic@0.14.3", - "author": "Lucio Franco ", - "name": "tonic", - "version": "0.14.3", - "description": "A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tonic@0.14.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/hyperium/tonic" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/tonic" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "author": "Tower Maintainers ", - "name": "tower-http", - "version": "0.6.8", - "description": "Tower middleware and utilities for HTTP clients and servers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-http@0.6.8", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower-http" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower-http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-layer", - "version": "0.3.3", - "description": "Decorates a `Service` to allow easy composition between `Service`s. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-layer@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-layer/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-service", - "version": "0.3.3", - "description": "Trait representing an asynchronous, request / response based, client or server. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-service@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-service/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "author": "Tower Maintainers ", - "name": "tower", - "version": "0.5.3", - "description": "Tower is a library of modular and reusable components for building robust clients and servers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower@0.5.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower_governor@0.8.0", - "author": "Ben Wishovich ", - "name": "tower_governor", - "version": "0.8.0", - "description": "A rate-limiting middleware for Tower backed by the governor crate that allows configurable key based and global limits", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "44de9b94d849d3c46e06a883d72d408c2de6403367b39df2b1c9d9e7b6736fe6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/tower_governor@0.8.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/benwis/tower-governor" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "author": "Tokio Contributors , Eliza Weisman , David Barsky ", - "name": "tracing-attributes", - "version": "0.1.31", - "description": "Procedural macro attributes for automatically instrumenting functions. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-attributes@0.1.31", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "author": "Tokio Contributors ", - "name": "tracing-core", - "version": "0.1.36", - "description": "Core primitives for application-level tracing. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-core@0.1.36", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "author": "Tokio Contributors ", - "name": "tracing-log", - "version": "0.2.0", - "description": "Provides compatibility between `tracing` and the `log` crate. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-log@0.2.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0", - "author": "Tokio Contributors ", - "name": "tracing-serde", - "version": "0.2.0", - "description": "A compatibility layer for serializing trace data with `serde` ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-serde@0.2.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "author": "Eliza Weisman , David Barsky , Tokio Contributors ", - "name": "tracing-subscriber", - "version": "0.3.22", - "description": "Utilities for implementing and composing `tracing` subscribers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-subscriber@0.3.22", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "author": "Eliza Weisman , Tokio Contributors ", - "name": "tracing", - "version": "0.1.44", - "description": "Application-level tracing for Rust. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing@0.1.44", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "author": "Sean McArthur ", - "name": "try-lock", - "version": "0.2.5", - "description": "A lightweight atomic lock.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/try-lock@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/try-lock" - }, - { - "type": "website", - "url": "https://github.com/seanmonstar/try-lock" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/try-lock" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "author": "Paho Lurie-Gregg , Andre Bogus ", - "name": "typenum", - "version": "1.19.0", - "description": "Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/typenum@1.19.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/typenum" - }, - { - "type": "vcs", - "url": "https://github.com/paholg/typenum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0", - "author": "Sean McArthur ", - "name": "unicase", - "version": "2.9.0", - "description": "A case-insensitive wrapper around strings.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/unicase@2.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/unicase" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/unicase" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "author": "David Tolnay ", - "name": "unicode-ident", - "version": "1.0.22", - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" - } - ], - "licenses": [ - { - "expression": "(MIT OR Apache-2.0) AND Unicode-3.0" - } - ], - "purl": "pkg:cargo/unicode-ident@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/unicode-ident" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/unicode-ident" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "author": "kwantam , Manish Goregaokar ", - "name": "unicode-width", - "version": "0.2.2", - "description": "Determine displayed width of `char` and `str` types according to Unicode Standard Annex #11 rules. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/unicode-width@0.2.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/unicode-rs/unicode-width" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-rs/unicode-width" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2", - "author": "Fabio Valentini , Benjamin Sago ", - "name": "unit-prefix", - "version": "0.5.2", - "description": "Format numbers with metric and binary unit prefixes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/unit-prefix@0.5.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://codeberg.org/commons-rs/unit-prefix" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "author": "Brian Smith ", - "name": "untrusted", - "version": "0.9.0", - "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - } - ], - "licenses": [ - { - "expression": "ISC" - } - ], - "purl": "pkg:cargo/untrusted@0.9.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://briansmith.org/rustdoc/untrusted/" - }, - { - "type": "vcs", - "url": "https://github.com/briansmith/untrusted" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "author": "The rust-url developers", - "name": "url", - "version": "2.5.8", - "description": "URL library for Rust, based on the WHATWG URL Standard", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/url@2.5.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/url" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "author": "Henri Sivonen ", - "name": "utf8_iter", - "version": "1.0.4", - "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/utf8_iter@1.0.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/utf8_iter/" - }, - { - "type": "website", - "url": "https://docs.rs/utf8_iter/" - }, - { - "type": "vcs", - "url": "https://github.com/hsivonen/utf8_iter" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "author": "Joe Wilm , Christian Duerr ", - "name": "utf8parse", - "version": "0.2.2", - "description": "Table-driven UTF-8 parser", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/utf8parse@0.2.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/utf8parse/" - }, - { - "type": "vcs", - "url": "https://github.com/alacritty/vte" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-gen@5.4.0", - "author": "Juha Kukkonen ", - "name": "utoipa-gen", - "version": "5.4.0", - "description": "Code generation implementation for utoipa", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/utoipa-gen@5.4.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/juhaku/utoipa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-swagger-ui@9.0.2", - "author": "Juha Kukkonen ", - "name": "utoipa-swagger-ui", - "version": "9.0.2", - "description": "Swagger UI for utoipa", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/utoipa-swagger-ui@9.0.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/juhaku/utoipa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "author": "Juha Kukkonen ", - "name": "utoipa", - "version": "5.4.0", - "description": "Compile time generated OpenAPI documentation for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/utoipa@5.4.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/juhaku/utoipa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "author": "Ashley Mannix, Dylan DPC, Hunar Roop Kahlon", - "name": "uuid", - "version": "1.22.0", - "description": "A library to generate and parse UUIDs.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/uuid@1.22.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/uuid" - }, - { - "type": "website", - "url": "https://github.com/uuid-rs/uuid" - }, - { - "type": "vcs", - "url": "https://github.com/uuid-rs/uuid" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "author": "Sergio Benitez ", - "name": "version_check", - "version": "0.9.5", - "description": "Tiny crate to check the version of the installed/running rustc.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/version_check@0.9.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/version_check/" - }, - { - "type": "vcs", - "url": "https://github.com/SergioBenitez/version_check" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "author": "Andrew Gallant ", - "name": "walkdir", - "version": "2.5.0", - "description": "Recursively walk a directory.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/walkdir@2.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/walkdir/" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/walkdir" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/walkdir" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "author": "Sean McArthur ", - "name": "want", - "version": "0.3.1", - "description": "Detect when another Future wants a result.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/want@0.3.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/want" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/want" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "name": "web-time", - "version": "1.1.0", - "description": "Drop-in replacement for std::time for Wasm in browsers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/web-time@1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/daxpedda/web-time" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5", - "name": "webpki-roots", - "version": "1.0.5", - "description": "Mozilla's CA root certificates for use with webpki", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" - } - ], - "licenses": [ - { - "expression": "CDLA-Permissive-2.0" - } - ], - "purl": "pkg:cargo/webpki-roots@1.0.5", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/rustls/webpki-roots" - }, - { - "type": "vcs", - "url": "https://github.com/rustls/webpki-roots" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14", - "name": "winnow", - "version": "0.7.14", - "description": "A byte-oriented, zero-copy, parser combinators library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/winnow@0.7.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/winnow-rs/winnow" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "author": "The ICU4X Project Developers", - "name": "writeable", - "version": "0.6.2", - "description": "A more efficient alternative to fmt::Display", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/writeable@0.6.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1", - "author": "Steven Allen ", - "name": "xattr", - "version": "1.6.1", - "description": "unix extended filesystem attributes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/xattr@1.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/xattr" - }, - { - "type": "vcs", - "url": "https://github.com/Stebalien/xattr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "author": "Manish Goregaokar ", - "name": "yoke-derive", - "version": "0.8.1", - "description": "Custom derive for the yoke crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/yoke-derive@0.8.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "author": "Manish Goregaokar ", - "name": "yoke", - "version": "0.8.1", - "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/yoke@0.8.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37", - "author": "Joshua Liebow-Feeser , Jack Wrenn ", - "name": "zerocopy", - "version": "0.8.37", - "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac" - } - ], - "licenses": [ - { - "expression": "BSD-2-Clause OR Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zerocopy@0.8.37", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/google/zerocopy" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "author": "Manish Goregaokar ", - "name": "zerofrom-derive", - "version": "0.1.6", - "description": "Custom derive for the zerofrom crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerofrom-derive@0.1.6", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "author": "Manish Goregaokar ", - "name": "zerofrom", - "version": "0.1.6", - "description": "ZeroFrom trait for constructing", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerofrom@0.1.6", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2", - "author": "The RustCrypto Project Developers", - "name": "zeroize", - "version": "1.8.2", - "description": "Securely clear secrets from memory with a simple trait built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM! ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zeroize@1.8.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/RustCrypto/utils/tree/master/zeroize" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3", - "author": "The RustCrypto Project Developers", - "name": "zeroize_derive", - "version": "1.4.3", - "description": "Custom derive support for zeroize", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/zeroize_derive@1.4.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils/tree/master/zeroize/derive" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "author": "The ICU4X Project Developers", - "name": "zerotrie", - "version": "0.2.3", - "description": "A data structure that efficiently maps strings to integers", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerotrie@0.2.3", - "externalReferences": [ - { - "type": "website", - "url": "https://icu4x.unicode.org" - }, - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2", - "author": "Manish Goregaokar ", - "name": "zerovec-derive", - "version": "0.11.2", - "description": "Custom derive for the zerovec crate", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerovec-derive@0.11.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5", - "author": "The ICU4X Project Developers", - "name": "zerovec", - "version": "0.11.5", - "description": "Zero-copy vector backed by a byte array", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" - } - ], - "licenses": [ - { - "expression": "Unicode-3.0" - } - ], - "purl": "pkg:cargo/zerovec@0.11.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/unicode-org/icu4x" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0", - "author": "Mathijs van de Nes , Marli Frost , Ryan Levick , Chris Hennick ", - "name": "zip", - "version": "3.0.0", - "description": "Library to support the reading and writing of zip files. ", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/zip@3.0.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/zip-rs/zip2.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2", - "name": "zlib-rs", - "version": "0.6.2", - "description": "A memory-safe zlib implementation written in rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c745c48e1007337ed136dc99df34128b9faa6ed542d80a1c673cf55a6d7236c8" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/zlib-rs@0.6.2", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/trifectatechfoundation/zlib-rs" - }, - { - "type": "vcs", - "url": "https://github.com/trifectatechfoundation/zlib-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "author": "David Tolnay ", - "name": "zmij", - "version": "1.0.17", - "description": "A double-to-string conversion algorithm based on Schubfach and yy", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/zmij@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/zmij" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/zmij" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3", - "name": "zopfli", - "version": "0.8.3", - "description": "A Rust implementation of the Zopfli compression algorithm.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/zopfli@0.8.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/zopfli-rs/zopfli" - }, - { - "type": "vcs", - "url": "https://github.com/zopfli-rs/zopfli" - } - ] - } - ], - "dependencies": [ - { - "ref": "path+file:///srv/projects/nora/nora-registry#0.2.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bcrypt@0.19.0", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#prometheus@0.14.0", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tower_governor@0.8.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "registry+https://github.com/rust-lang/crates.io-index#utoipa-swagger-ui@9.0.2", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bcrypt@0.19.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#blowfish@0.9.1", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#blowfish@0.9.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.19.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap@4.5.60", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.60", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21", - "registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13", - "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.55", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#clap_lex@1.0.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#forwarded-header-value@0.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#nonempty@0.7.0", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-timer@3.0.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-timer@3.0.3", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "registry+https://github.com/rust-lang/crates.io-index#nonzero_ext@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "registry+https://github.com/rust-lang/crates.io-index#quanta@0.12.6", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#spinning_top@0.3.0", - "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-timeout@0.5.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indicatif@0.18.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#console@0.16.2", - "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nonempty@0.7.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nonzero_ext@0.3.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#prometheus@0.14.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#protobuf@3.7.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf-support@3.7.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#protobuf@3.7.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#protobuf-support@3.7.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quanta@0.12.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#raw-cpuid@11.6.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2", - "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14", - "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14", - "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#raw-cpuid@11.6.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9", - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.55", - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.11.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.11.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.12.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14", - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0", - "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.9", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#spinning_top@0.3.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tar@0.4.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.27", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.36", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tonic@0.14.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89", - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-timeout@0.5.2", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.10", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower_governor@0.8.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#forwarded-header-value@0.1.1", - "registry+https://github.com/rust-lang/crates.io-index#governor@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10", - "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18", - "registry+https://github.com/rust-lang/crates.io-index#tonic@0.14.3", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicase@2.9.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unit-prefix@0.5.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-gen@5.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa-swagger-ui@9.0.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5", - "registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2", - "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28", - "registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.11.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8", - "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#utoipa@5.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#utoipa-gen@5.4.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#web-time@1.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#xattr@1.6.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1", - "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.37", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5", - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1", - "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6", - "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zip@3.0.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zlib-rs@0.6.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.19.1", - "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0", - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8" - ] - } - ] -} \ No newline at end of file diff --git a/nora-storage/nora-storage.cdx.json b/nora-storage/nora-storage.cdx.json deleted file mode 100644 index 13465cf..0000000 --- a/nora-storage/nora-storage.cdx.json +++ /dev/null @@ -1,4050 +0,0 @@ -{ - "bomFormat": "CycloneDX", - "specVersion": "1.3", - "version": 1, - "serialNumber": "urn:uuid:d49b4735-970e-42c1-b3e3-561bc1fd2e52", - "metadata": { - "timestamp": "2026-03-16T13:29:38.111248232Z", - "tools": [ - { - "vendor": "CycloneDX", - "name": "cargo-cyclonedx", - "version": "0.5.8" - } - ], - "authors": [ - { - "name": "DevITWay", - "email": "devitway@gmail.com" - } - ], - "component": { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-storage#0.2.31", - "author": "DevITWay ", - "name": "nora-storage", - "version": "0.2.31", - "description": "S3-compatible storage server for NORA", - "scope": "required", - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nora-storage@0.2.31?download_url=file://.", - "externalReferences": [ - { - "type": "website", - "url": "https://getnora.io" - }, - { - "type": "vcs", - "url": "https://github.com/getnora-io/nora" - } - ], - "components": [ - { - "type": "application", - "bom-ref": "path+file:///srv/projects/nora/nora-storage#0.2.31 bin-target-0", - "name": "nora-storage", - "version": "0.2.31", - "purl": "pkg:cargo/nora-storage@0.2.31?download_url=file://.#src/main.rs" - } - ] - }, - "properties": [ - { - "name": "cdx:rustc:sbom:target:triple", - "value": "x86_64-unknown-linux-gnu" - } - ] - }, - "components": [ - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "author": "Andrew Gallant ", - "name": "aho-corasick", - "version": "1.1.4", - "description": "Fast multiple substring searching.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/aho-corasick@1.1.4", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/BurntSushi/aho-corasick" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/aho-corasick" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "author": "Zakarum ", - "name": "allocator-api2", - "version": "0.2.21", - "description": "Mirror of Rust's allocator API", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/allocator-api2@0.2.21", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/allocator-api2" - }, - { - "type": "website", - "url": "https://github.com/zakarumych/allocator-api2" - }, - { - "type": "vcs", - "url": "https://github.com/zakarumych/allocator-api2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "author": "Stjepan Glavina , Contributors to futures-rs", - "name": "atomic-waker", - "version": "1.1.2", - "description": "A synchronization primitive for task wakeup", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/atomic-waker@1.1.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/smol-rs/atomic-waker" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0", - "author": "Josh Stone ", - "name": "autocfg", - "version": "1.5.0", - "description": "Automatic cfg for Rust compiler features", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/autocfg@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/autocfg/" - }, - { - "type": "vcs", - "url": "https://github.com/cuviper/autocfg" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "name": "axum-core", - "version": "0.5.6", - "description": "Core types and traits for axum", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/axum-core@0.5.6", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/axum" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/axum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "name": "axum", - "version": "0.8.8", - "description": "Web framework that focuses on ergonomics and modularity", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/axum@0.8.8", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/axum" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/axum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "author": "Marshall Pierce ", - "name": "base64", - "version": "0.22.1", - "description": "encodes and decodes base64 as bytes or utf8", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/base64@0.22.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/base64" - }, - { - "type": "vcs", - "url": "https://github.com/marshallpierce/rust-base64" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "author": "RustCrypto Developers", - "name": "block-buffer", - "version": "0.10.4", - "description": "Buffer type for block processing of data", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/block-buffer@0.10.4", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/block-buffer" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "author": "Carl Lerche , Sean McArthur ", - "name": "bytes", - "version": "1.11.1", - "description": "Types and traits for working with bytes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/bytes@1.11.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/bytes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "author": "Alex Crichton ", - "name": "cfg-if", - "version": "1.0.4", - "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cfg-if@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/cfg-if" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "name": "chrono", - "version": "0.4.44", - "description": "Date and time library for Rust", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/chrono@0.4.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/chrono/" - }, - { - "type": "website", - "url": "https://github.com/chronotope/chrono" - }, - { - "type": "vcs", - "url": "https://github.com/chronotope/chrono" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "author": "RustCrypto Developers", - "name": "cpufeatures", - "version": "0.2.17", - "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/cpufeatures@0.2.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/cpufeatures" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "author": "RustCrypto Developers", - "name": "crypto-common", - "version": "0.1.7", - "description": "Common cryptographic traits", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/crypto-common@0.1.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/crypto-common" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "author": "RustCrypto Developers", - "name": "digest", - "version": "0.10.7", - "description": "Traits for cryptographic hash functions and message authentication codes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/digest@0.10.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/digest" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "name": "equivalent", - "version": "1.0.2", - "description": "Traits for key comparison in maps.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/equivalent@1.0.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/equivalent" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "author": "Chris Wong , Dan Gohman ", - "name": "errno", - "version": "0.3.14", - "description": "Cross-platform interface to the `errno` variable.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/errno@0.3.14", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/errno" - }, - { - "type": "vcs", - "url": "https://github.com/lambda-fairy/rust-errno" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "author": "Alex Crichton ", - "name": "fnv", - "version": "1.0.7", - "description": "Fowler–Noll–Vo hash function", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/fnv@1.0.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://doc.servo.org/fnv/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-fnv" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "author": "Orson Peters ", - "name": "foldhash", - "version": "0.2.0", - "description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" - } - ], - "licenses": [ - { - "expression": "Zlib" - } - ], - "purl": "pkg:cargo/foldhash@0.2.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/orlp/foldhash" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "author": "The rust-url developers", - "name": "form_urlencoded", - "version": "1.2.2", - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/form_urlencoded@1.2.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "name": "futures-channel", - "version": "0.3.31", - "description": "Channels for asynchronous communication using futures-rs. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-channel@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "name": "futures-core", - "version": "0.3.31", - "description": "The core traits and types in for the `futures` library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-core@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "name": "futures-io", - "version": "0.3.31", - "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-io@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "name": "futures-macro", - "version": "0.3.31", - "description": "The futures-rs procedural macro implementations. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-macro@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "name": "futures-sink", - "version": "0.3.31", - "description": "The asynchronous `Sink` trait for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-sink@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "name": "futures-task", - "version": "0.3.31", - "description": "Tools for working with tasks. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-task@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "name": "futures-util", - "version": "0.3.31", - "description": "Common utilities and extension traits for the futures-rs library. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/futures-util@0.3.31", - "externalReferences": [ - { - "type": "website", - "url": "https://rust-lang.github.io/futures-rs" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/futures-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "author": "Bartłomiej Kamiński , Aaron Trent ", - "name": "generic-array", - "version": "0.14.7", - "description": "Generic types implementing functionality of arrays", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/generic-array@0.14.7", - "externalReferences": [ - { - "type": "documentation", - "url": "http://fizyk20.github.io/generic-array/generic_array/" - }, - { - "type": "vcs", - "url": "https://github.com/fizyk20/generic-array.git" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "author": "The Rand Project Developers", - "name": "getrandom", - "version": "0.4.1", - "description": "A small cross-platform library for retrieving random data from system source", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/getrandom@0.4.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/getrandom" - }, - { - "type": "vcs", - "url": "https://github.com/rust-random/getrandom" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "author": "Carl Lerche , Sean McArthur ", - "name": "h2", - "version": "0.4.13", - "description": "An HTTP/2 client and server", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/h2@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/h2" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/h2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "author": "Amanieu d'Antras ", - "name": "hashbrown", - "version": "0.16.1", - "description": "A Rust port of Google's SwissTable hash map", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/hashbrown@0.16.1", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/hashbrown" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body-util", - "version": "0.1.3", - "description": "Combinators and adapters for HTTP request or response bodies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body-util@0.1.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body-util" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "author": "Carl Lerche , Lucio Franco , Sean McArthur ", - "name": "http-body", - "version": "1.0.1", - "description": "Trait representing an asynchronous, streaming, HTTP request or response body. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/http-body@1.0.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http-body" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http-body" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "author": "Alex Crichton , Carl Lerche , Sean McArthur ", - "name": "http", - "version": "1.4.0", - "description": "A set of types for representing HTTP requests and responses. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/http@1.4.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/http" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/http" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "author": "Sean McArthur ", - "name": "httparse", - "version": "1.10.1", - "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httparse@1.10.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/httparse" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/httparse" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "author": "Pyfisch ", - "name": "httpdate", - "version": "1.0.3", - "description": "HTTP date parsing and formatting", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/httpdate@1.0.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/pyfisch/httpdate" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "author": "Sean McArthur ", - "name": "hyper-util", - "version": "0.1.19", - "description": "hyper utilities", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper-util@0.1.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper-util" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper-util" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "author": "Sean McArthur ", - "name": "hyper", - "version": "1.8.1", - "description": "A protective and efficient HTTP library for all.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/hyper@1.8.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/hyper" - }, - { - "type": "website", - "url": "https://hyper.rs" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/hyper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "author": "Andrew Straw , René Kijewski , Ryan Lopopolo ", - "name": "iana-time-zone", - "version": "0.1.65", - "description": "get the IANA time zone for the current system", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/iana-time-zone@0.1.65", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/strawlab/iana-time-zone" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "name": "indexmap", - "version": "2.13.0", - "description": "A hash table with consistent order and fast iteration.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/indexmap@2.13.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/indexmap/" - }, - { - "type": "vcs", - "url": "https://github.com/indexmap-rs/indexmap" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "author": "Kris Price ", - "name": "ipnet", - "version": "2.11.0", - "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/ipnet@2.11.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ipnet" - }, - { - "type": "vcs", - "url": "https://github.com/krisprice/ipnet" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "author": "David Tolnay ", - "name": "itoa", - "version": "1.0.17", - "description": "Fast integer primitive to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/itoa@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/itoa" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/itoa" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "author": "Marvin Löbel ", - "name": "lazy_static", - "version": "1.5.0", - "description": "A macro for declaring lazily evaluated statics in Rust.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lazy_static@1.5.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/lazy_static" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/lazy-static.rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "author": "The Rust Project Developers", - "name": "libc", - "version": "0.2.182", - "description": "Raw FFI bindings to platform libraries like libc.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/libc@0.2.182", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/rust-lang/libc" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "author": "Amanieu d'Antras ", - "name": "lock_api", - "version": "0.4.14", - "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/lock_api@0.4.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "author": "The Rust Project Developers", - "name": "log", - "version": "0.4.29", - "description": "A lightweight logging facade for Rust ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/log@0.4.29", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/log" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/log" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "author": "Eliza Weisman ", - "name": "matchers", - "version": "0.2.0", - "description": "Regex matching on character and byte streams. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/matchers@0.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/matchers/" - }, - { - "type": "website", - "url": "https://github.com/hawkw/matchers" - }, - { - "type": "vcs", - "url": "https://github.com/hawkw/matchers" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "author": "Ibraheem Ahmed ", - "name": "matchit", - "version": "0.8.4", - "description": "A high performance, zero-copy URL router.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" - } - ], - "licenses": [ - { - "expression": "MIT AND BSD-3-Clause" - } - ], - "purl": "pkg:cargo/matchit@0.8.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/ibraheemdev/matchit" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "author": "Andrew Gallant , bluss", - "name": "memchr", - "version": "2.7.6", - "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" - } - ], - "licenses": [ - { - "expression": "Unlicense OR MIT" - } - ], - "purl": "pkg:cargo/memchr@2.7.6", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/memchr/" - }, - { - "type": "website", - "url": "https://github.com/BurntSushi/memchr" - }, - { - "type": "vcs", - "url": "https://github.com/BurntSushi/memchr" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "author": "Sean McArthur ", - "name": "mime", - "version": "0.3.17", - "description": "Strongly Typed Mimes", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/mime@0.3.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/mime" - }, - { - "type": "vcs", - "url": "https://github.com/hyperium/mime" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "author": "Carl Lerche , Thomas de Zeeuw , Tokio Contributors ", - "name": "mio", - "version": "1.1.1", - "description": "Lightweight non-blocking I/O.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/mio@1.1.1", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tokio-rs/mio" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/mio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "author": "ogham@bsago.me, Ryan Scheel (Havvy) , Josh Triplett , The Nushell Project Developers", - "name": "nu-ansi-term", - "version": "0.50.3", - "description": "Library for ANSI terminal colors and styles (bold, underline)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/nu-ansi-term@0.50.3", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/nushell/nu-ansi-term" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "author": "The Rust Project Developers", - "name": "num-traits", - "version": "0.2.19", - "description": "Numeric traits for generic mathematics", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/num-traits@0.2.19", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/num-traits" - }, - { - "type": "website", - "url": "https://github.com/rust-num/num-traits" - }, - { - "type": "vcs", - "url": "https://github.com/rust-num/num-traits" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "author": "Aleksey Kladov ", - "name": "once_cell", - "version": "1.21.3", - "description": "Single assignment cells and lazy values.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/once_cell@1.21.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/once_cell" - }, - { - "type": "vcs", - "url": "https://github.com/matklad/once_cell" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "author": "Amanieu d'Antras ", - "name": "parking_lot", - "version": "0.12.5", - "description": "More compact and efficient implementations of the standard synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot@0.12.5", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "author": "Amanieu d'Antras ", - "name": "parking_lot_core", - "version": "0.9.12", - "description": "An advanced API for creating custom synchronization primitives.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/parking_lot_core@0.9.12", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/Amanieu/parking_lot" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "author": "The rust-url developers", - "name": "percent-encoding", - "version": "2.3.2", - "description": "Percent encoding and decoding", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/percent-encoding@2.3.2", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/servo/rust-url/" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "name": "pin-project-lite", - "version": "0.2.16", - "description": "A lightweight version of pin-project written with declarative macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/pin-project-lite@0.2.16", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/taiki-e/pin-project-lite" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "author": "Josef Brandl ", - "name": "pin-utils", - "version": "0.1.0", - "description": "Utilities for pinning ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/pin-utils@0.1.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/pin-utils" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang-nursery/pin-utils" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "author": "David Tolnay , Alex Crichton ", - "name": "proc-macro2", - "version": "1.0.106", - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/proc-macro2@1.0.106", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/proc-macro2" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/proc-macro2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.39.2", - "name": "quick-xml", - "version": "0.39.2", - "description": "High performance xml reader and writer", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/quick-xml@0.39.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quick-xml" - }, - { - "type": "vcs", - "url": "https://github.com/tafia/quick-xml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "author": "David Tolnay ", - "name": "quote", - "version": "1.0.44", - "description": "Quasi-quoting macro quote!(...)", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/quote@1.0.44", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/quote/" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/quote" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex-automata", - "version": "0.4.13", - "description": "Automata construction and matching using regular expressions.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex-automata@0.4.13", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex-automata" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex/tree/master/regex-automata" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8", - "author": "The Rust Project Developers, Andrew Gallant ", - "name": "regex-syntax", - "version": "0.8.8", - "description": "A regular expression parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/regex-syntax@0.8.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/regex-syntax" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/regex/tree/master/regex-syntax" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/regex" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "author": "David Tolnay ", - "name": "ryu", - "version": "1.0.22", - "description": "Fast floating point to string conversion", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR BSL-1.0" - } - ], - "purl": "pkg:cargo/ryu@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/ryu" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/ryu" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "author": "bluss", - "name": "scopeguard", - "version": "1.2.0", - "description": "A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/scopeguard@1.2.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/scopeguard/" - }, - { - "type": "vcs", - "url": "https://github.com/bluss/scopeguard" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde", - "version": "1.0.228", - "description": "A generic serialization/deserialization framework", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_core", - "version": "1.0.228", - "description": "Serde traits only, with no support for derive -- use the `serde` crate instead", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_core@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_core" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_derive", - "version": "1.0.228", - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_derive@1.0.228", - "externalReferences": [ - { - "type": "documentation", - "url": "https://serde.rs/derive.html" - }, - { - "type": "website", - "url": "https://serde.rs" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/serde" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "author": "Erick Tryzelaar , David Tolnay ", - "name": "serde_json", - "version": "1.0.149", - "description": "A JSON serialization file format", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_json@1.0.149", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_json" - }, - { - "type": "vcs", - "url": "https://github.com/serde-rs/json" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "author": "David Tolnay ", - "name": "serde_path_to_error", - "version": "0.1.20", - "description": "Path to the element that failed to deserialize", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_path_to_error@0.1.20", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_path_to_error" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/path-to-error" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "name": "serde_spanned", - "version": "1.0.4", - "description": "Serde-compatible spanned Value", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_spanned@1.0.4", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "author": "Anthony Ramine ", - "name": "serde_urlencoded", - "version": "0.7.1", - "description": "`x-www-form-urlencoded` meets Serde", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/serde_urlencoded@0.7.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/serde_urlencoded/0.7.1/serde_urlencoded/" - }, - { - "type": "vcs", - "url": "https://github.com/nox/serde_urlencoded" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "author": "RustCrypto Developers", - "name": "sha2", - "version": "0.10.9", - "description": "Pure Rust implementation of the SHA-2 hash function family including SHA-224, SHA-256, SHA-384, and SHA-512. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/sha2@0.10.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sha2" - }, - { - "type": "vcs", - "url": "https://github.com/RustCrypto/hashes" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "author": "Eliza Weisman ", - "name": "sharded-slab", - "version": "0.1.7", - "description": "A lock-free concurrent slab. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/sharded-slab@0.1.7", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sharded-slab/" - }, - { - "type": "website", - "url": "https://github.com/hawkw/sharded-slab" - }, - { - "type": "vcs", - "url": "https://github.com/hawkw/sharded-slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "author": "Michal 'vorner' Vaner , Masaki Hara ", - "name": "signal-hook-registry", - "version": "1.4.8", - "description": "Backend crate for signal-hook", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/signal-hook-registry@1.4.8", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/signal-hook-registry" - }, - { - "type": "vcs", - "url": "https://github.com/vorner/signal-hook" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "author": "Carl Lerche ", - "name": "slab", - "version": "0.4.11", - "description": "Pre-allocated storage for a uniform data type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/slab@0.4.11", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/tokio-rs/slab" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "author": "The Servo Project Developers", - "name": "smallvec", - "version": "1.15.1", - "description": "'Small vector' optimization: store up to a small number of items on the stack", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/smallvec@1.15.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/smallvec/" - }, - { - "type": "vcs", - "url": "https://github.com/servo/rust-smallvec" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "author": "Alex Crichton , Thomas de Zeeuw ", - "name": "socket2", - "version": "0.6.2", - "description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/socket2@0.6.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/socket2" - }, - { - "type": "website", - "url": "https://github.com/rust-lang/socket2" - }, - { - "type": "vcs", - "url": "https://github.com/rust-lang/socket2" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "author": "Isis Lovecruft , Henry de Valence ", - "name": "subtle", - "version": "2.6.1", - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - } - ], - "licenses": [ - { - "expression": "BSD-3-Clause" - } - ], - "purl": "pkg:cargo/subtle@2.6.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/subtle" - }, - { - "type": "website", - "url": "https://dalek.rs/" - }, - { - "type": "vcs", - "url": "https://github.com/dalek-cryptography/subtle" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "author": "David Tolnay ", - "name": "syn", - "version": "2.0.114", - "description": "Parser for Rust source code", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/syn@2.0.114", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/syn" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/syn" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "author": "Actyx AG ", - "name": "sync_wrapper", - "version": "1.0.2", - "description": "A tool for enlisting the compiler's help in proving the absence of concurrency", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" - } - ], - "licenses": [ - { - "expression": "Apache-2.0" - } - ], - "purl": "pkg:cargo/sync_wrapper@1.0.2", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "website", - "url": "https://docs.rs/sync_wrapper" - }, - { - "type": "vcs", - "url": "https://github.com/Actyx/sync_wrapper" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "author": "Amanieu d'Antras ", - "name": "thread_local", - "version": "1.1.9", - "description": "Per-object thread-local storage", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/thread_local@1.1.9", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/thread_local/" - }, - { - "type": "vcs", - "url": "https://github.com/Amanieu/thread_local-rs" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "author": "Tokio Contributors ", - "name": "tokio-macros", - "version": "2.6.0", - "description": "Tokio's proc macros. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-macros@2.6.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "author": "Tokio Contributors ", - "name": "tokio-util", - "version": "0.7.18", - "description": "Additional utilities for working with Tokio. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio-util@0.7.18", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "author": "Tokio Contributors ", - "name": "tokio", - "version": "1.50.0", - "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tokio@1.50.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tokio" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "name": "toml", - "version": "1.0.6+spec-1.1.0", - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides implementations of the standard Serialize/Deserialize traits for TOML data to facilitate deserializing and serializing Rust structures. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml@1.0.6+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "name": "toml_datetime", - "version": "1.0.0+spec-1.1.0", - "description": "A TOML-compatible datetime type", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_datetime@1.0.0+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "name": "toml_parser", - "version": "1.0.9+spec-1.1.0", - "description": "Yet another format-preserving TOML parser.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_parser@1.0.9+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "name": "toml_writer", - "version": "1.0.6+spec-1.1.0", - "description": "A low-level interface for writing out TOML ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/toml_writer@1.0.6+spec-1.1.0", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/toml-rs/toml" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-layer", - "version": "0.3.3", - "description": "Decorates a `Service` to allow easy composition between `Service`s. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-layer@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-layer/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "author": "Tower Maintainers ", - "name": "tower-service", - "version": "0.3.3", - "description": "Trait representing an asynchronous, request / response based, client or server. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower-service@0.3.3", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/tower-service/0.3.3" - }, - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "author": "Tower Maintainers ", - "name": "tower", - "version": "0.5.3", - "description": "Tower is a library of modular and reusable components for building robust clients and servers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tower@0.5.3", - "externalReferences": [ - { - "type": "website", - "url": "https://github.com/tower-rs/tower" - }, - { - "type": "vcs", - "url": "https://github.com/tower-rs/tower" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "author": "Tokio Contributors , Eliza Weisman , David Barsky ", - "name": "tracing-attributes", - "version": "0.1.31", - "description": "Procedural macro attributes for automatically instrumenting functions. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-attributes@0.1.31", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "author": "Tokio Contributors ", - "name": "tracing-core", - "version": "0.1.36", - "description": "Core primitives for application-level tracing. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-core@0.1.36", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "author": "Tokio Contributors ", - "name": "tracing-log", - "version": "0.2.0", - "description": "Provides compatibility between `tracing` and the `log` crate. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-log@0.2.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0", - "author": "Tokio Contributors ", - "name": "tracing-serde", - "version": "0.2.0", - "description": "A compatibility layer for serializing trace data with `serde` ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-serde@0.2.0", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "author": "Eliza Weisman , David Barsky , Tokio Contributors ", - "name": "tracing-subscriber", - "version": "0.3.22", - "description": "Utilities for implementing and composing `tracing` subscribers. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing-subscriber@0.3.22", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "author": "Eliza Weisman , Tokio Contributors ", - "name": "tracing", - "version": "0.1.44", - "description": "Application-level tracing for Rust. ", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/tracing@0.1.44", - "externalReferences": [ - { - "type": "website", - "url": "https://tokio.rs" - }, - { - "type": "vcs", - "url": "https://github.com/tokio-rs/tracing" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "author": "Sean McArthur ", - "name": "try-lock", - "version": "0.2.5", - "description": "A lightweight atomic lock.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/try-lock@0.2.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/try-lock" - }, - { - "type": "website", - "url": "https://github.com/seanmonstar/try-lock" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/try-lock" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "author": "Paho Lurie-Gregg , Andre Bogus ", - "name": "typenum", - "version": "1.19.0", - "description": "Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/typenum@1.19.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/typenum" - }, - { - "type": "vcs", - "url": "https://github.com/paholg/typenum" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "author": "David Tolnay ", - "name": "unicode-ident", - "version": "1.0.22", - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" - } - ], - "licenses": [ - { - "expression": "(MIT OR Apache-2.0) AND Unicode-3.0" - } - ], - "purl": "pkg:cargo/unicode-ident@1.0.22", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/unicode-ident" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/unicode-ident" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "author": "Ashley Mannix, Dylan DPC, Hunar Roop Kahlon", - "name": "uuid", - "version": "1.22.0", - "description": "A library to generate and parse UUIDs.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" - } - ], - "licenses": [ - { - "expression": "Apache-2.0 OR MIT" - } - ], - "purl": "pkg:cargo/uuid@1.22.0", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/uuid" - }, - { - "type": "website", - "url": "https://github.com/uuid-rs/uuid" - }, - { - "type": "vcs", - "url": "https://github.com/uuid-rs/uuid" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "author": "Sergio Benitez ", - "name": "version_check", - "version": "0.9.5", - "description": "Tiny crate to check the version of the installed/running rustc.", - "scope": "excluded", - "hashes": [ - { - "alg": "SHA-256", - "content": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - } - ], - "licenses": [ - { - "expression": "MIT OR Apache-2.0" - } - ], - "purl": "pkg:cargo/version_check@0.9.5", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/version_check/" - }, - { - "type": "vcs", - "url": "https://github.com/SergioBenitez/version_check" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "author": "Sean McArthur ", - "name": "want", - "version": "0.3.1", - "description": "Detect when another Future wants a result.", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/want@0.3.1", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/want" - }, - { - "type": "vcs", - "url": "https://github.com/seanmonstar/want" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14", - "name": "winnow", - "version": "0.7.14", - "description": "A byte-oriented, zero-copy, parser combinators library", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/winnow@0.7.14", - "externalReferences": [ - { - "type": "vcs", - "url": "https://github.com/winnow-rs/winnow" - } - ] - }, - { - "type": "library", - "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "author": "David Tolnay ", - "name": "zmij", - "version": "1.0.17", - "description": "A double-to-string conversion algorithm based on Schubfach and yy", - "scope": "required", - "hashes": [ - { - "alg": "SHA-256", - "content": "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439" - } - ], - "licenses": [ - { - "expression": "MIT" - } - ], - "purl": "pkg:cargo/zmij@1.0.17", - "externalReferences": [ - { - "type": "documentation", - "url": "https://docs.rs/zmij" - }, - { - "type": "vcs", - "url": "https://github.com/dtolnay/zmij" - } - ] - } - ], - "dependencies": [ - { - "ref": "path+file:///srv/projects/nora/nora-storage#0.2.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.39.2", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#axum@0.8.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#axum-core@0.5.6", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4", - "registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21", - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#foldhash@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2", - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#http@1.4.0", - "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1", - "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1", - "registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#iana-time-zone@0.1.65", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#matchit@0.8.4", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.39.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2", - "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.17", - "registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.22", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17", - "registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#errno@0.3.14", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1", - "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.182", - "registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1", - "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.8", - "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml@1.0.6+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.4", - "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_datetime@1.0.0+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.9+spec-1.1.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.6+spec-1.1.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31", - "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11", - "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2", - "registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0", - "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18", - "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106", - "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.44", - "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.114" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.22", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3", - "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3", - "registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13", - "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228", - "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149", - "registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7", - "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1", - "registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9", - "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36", - "registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0", - "registry+https://github.com/rust-lang/crates.io-index#tracing-serde@0.2.0" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#log@0.4.29", - "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16", - "registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31", - "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.1" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1", - "dependsOn": [ - "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5" - ] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.14", - "dependsOn": [] - }, - { - "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.17", - "dependsOn": [] - } - ] -} \ No newline at end of file