diff --git a/.bazelrc b/.bazelrc index 11cefef197df7..53905096b2608 100644 --- a/.bazelrc +++ b/.bazelrc @@ -70,18 +70,15 @@ common --host_per_file_copt=external/.*grpc.*@--GRPC_WAS_NOT_SUPPOSED_TO_BE_BUIL # Required to get `protobuf` compiling, which is required for `rules_closure` common --incompatible_enable_proto_toolchain_resolution build --incompatible_enable_cc_toolchain_resolution -build:linux --cxxopt=-std=c++17 -build:linux --host_cxxopt=-std=c++17 -build:macos --cxxopt=-std=c++17 -build:macos --host_cxxopt=-std=c++17 -build:windows --cxxopt=/std:c++17 -build:windows --host_cxxopt=/std:c++17 +build --cxxopt=-std=c++17 +build --host_cxxopt=-std=c++17 build:windows --per_file_copt=external/protobuf\\+.*@/w build:windows --host_per_file_copt=external/protobuf\\+.*@/w -common --define=protobuf_allow_msvc=true # For build stamping -build --enable_platform_specific_config +common --enable_platform_specific_config +common:linux --host_platform=//:local_linux_gnu +common:windows --host_platform=//:local_windows_gnullvm build:linux --workspace_status_command=scripts/build-info.sh build:macos --workspace_status_command=scripts/build-info.sh build:windows --workspace_status_command="powershell.exe scripts/build-info.ps1" diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index c6ec7ace68e00..083bea509b502 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -32,7 +32,7 @@ jobs: uses: ./.github/workflows/bazel.yml with: name: Update Rust Version - run: ./go rust:version ${{ needs.parse-tag.outputs.version }} && ./go rust:update + run: ./go rust:version ${{ needs.parse-tag.outputs.version }} artifact-name: rust-version push-rust-version: @@ -147,7 +147,7 @@ jobs: with: name: Run dependency updates ref: staging/release-${{ needs.parse-tag.outputs.tag }} - run: ./go ${{ needs.parse-tag.outputs.language }}:update${{ needs.parse-tag.outputs.language == 'all' && ' && ./go rust:update' || '' }} + run: ./go ${{ needs.parse-tag.outputs.language }}:update${{ needs.parse-tag.outputs.language == 'all' }} artifact-name: patch-dep-updates calculate-changelog-depth: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e6767b1f8ba5..d7ba45d56b742 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -184,7 +184,7 @@ jobs: uses: ./.github/workflows/bazel.yml with: name: Reset Versions - run: ./go ${{ needs.parse-tag.outputs.language }}:version nightly${{ needs.parse-tag.outputs.language == 'all' && ' && ./go rust:version nightly && ./go rust:update' || '' }} + run: ./go ${{ needs.parse-tag.outputs.language }}:version nightly${{ needs.parse-tag.outputs.language == 'all' && ' && ./go rust:version nightly' || '' }} artifact-name: version-reset update-version: diff --git a/BUILD.bazel b/BUILD.bazel index 3685d0c7ad36b..b944e4cd69201 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -118,6 +118,22 @@ platform( ], ) +platform( + name = "local_linux_gnu", + constraint_values = [ + "@llvm//constraints/libc:gnu.2.28", + ], + parents = ["@platforms//host"], +) + +platform( + name = "local_windows_gnullvm", + constraint_values = [ + "@rules_rs//rs/platforms/constraints:windows_gnullvm", + ], + parents = ["@platforms//host"], +) + buildifier( name = "buildifier", lint_mode = "fix", diff --git a/MODULE.bazel b/MODULE.bazel index f2dd72a81a697..9357715877bf7 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -6,18 +6,25 @@ bazel_dep(name = "aspect_rules_esbuild", version = "0.25.1") bazel_dep(name = "aspect_rules_jest", version = "0.25.2") bazel_dep(name = "aspect_rules_js", version = "3.0.3") bazel_dep(name = "aspect_rules_ts", version = "3.8.6") -bazel_dep(name = "bazel_features", version = "1.43.0") +bazel_dep(name = "bazel_features", version = "1.45.0") bazel_dep(name = "bazel_skylib", version = "1.9.0") bazel_dep(name = "buildifier_prebuilt", version = "8.5.1") bazel_dep(name = "contrib_rules_jvm", version = "0.32.0") +bazel_dep(name = "llvm", version = "0.7.9") bazel_dep(name = "package_metadata", version = "0.0.7") bazel_dep(name = "platforms", version = "1.0.0") # If you update this, also update the prebuilt version of `protoc` we use below bazel_dep(name = "protobuf", version = "33.5") -# Required for rules_rust to import the crates properly -bazel_dep(name = "rules_cc", version = "0.2.17", dev_dependency = True) +bazel_dep(name = "rules_cc", version = "0.2.18", dev_dependency = True) + +# rules_rs pulls protobuf for optional prost support. Keep Selenium on the +# explicitly pinned protobuf version above so it stays paired with prebuilt protoc. +single_version_override( + module_name = "protobuf", + version = "33.5", +) bazel_dep(name = "rules_android", version = "0.7.1") bazel_dep(name = "rules_closure", version = "0.15.0") @@ -33,7 +40,7 @@ bazel_dep(name = "rules_pkg", version = "1.2.0") bazel_dep(name = "rules_python", version = "1.9.0") bazel_dep(name = "rules_proto", version = "7.1.0") bazel_dep(name = "rules_ruby", version = "0.25.0") -bazel_dep(name = "rules_rust", version = "0.69.0") +bazel_dep(name = "rules_rs", version = "0.0.61") # Use latest rules_jvm_external for Bazel 9 compatibility single_version_override( @@ -386,15 +393,57 @@ use_repo(ruby, "bundle", "ruby", "ruby_toolchains") register_toolchains("@ruby_toolchains//:all") -rust = use_extension("@rules_rust//rust:extensions.bzl", "rust") -rust.toolchain(versions = ["1.89.0"]) +rules_rust = use_extension("@rules_rs//rs:rules_rust.bzl", "rules_rust") +use_repo(rules_rust, "rules_rust") + +rust_toolchains = use_extension("@rules_rs//rs/toolchains:module_extension.bzl", "toolchains") +rust_toolchains.toolchain( + edition = "2024", + version = "1.89.0", +) +use_repo(rust_toolchains, "default_rust_toolchains") + +register_toolchains("@default_rust_toolchains//:all") + +# TODO: Register only Windows exec for now, full @llvm migration can be done as followup. +llvm_toolchains = use_extension("@llvm//extensions:toolchain.bzl", "toolchain") +llvm_toolchains.exec( + arch = "x86_64", + os = "windows", +) +llvm_toolchains.exec( + arch = "aarch64", + os = "windows", +) +use_repo(llvm_toolchains, "llvm_toolchains") -crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate") +register_toolchains("@llvm_toolchains//:all") + +crate = use_extension("@rules_rs//rs:extensions.bzl", "crate") crate.from_cargo( name = "crates", - cargo_lockfile = "//rust:Cargo.lock", - lockfile = "//rust:Cargo.Bazel.lock", - manifests = ["//rust:Cargo.toml"], + cargo_lock = "//rust:Cargo.lock", + cargo_toml = "//rust:Cargo.toml", + platform_triples = [ + "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", + "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + ], +) +crate.annotation( + crate = "bzip2-sys", + gen_build_script = "on", +) +crate.annotation( + crate = "lzma-sys", + gen_build_script = "on", +) +crate.annotation( + crate = "zstd-sys", + gen_build_script = "on", ) use_repo(crate, "crates") diff --git a/README.md b/README.md index 69c43b2a8280c..e8bfc063fbf0b 100644 --- a/README.md +++ b/README.md @@ -284,11 +284,7 @@ you can configure it use Bazel artifacts: ### Rust -To keep `Cargo.Bazel.lock` synchronized with `Cargo.lock`, run: - -```shell -CARGO_BAZEL_REPIN=true bazel run @crates//:all -``` +Rust Bazel dependencies are generated directly from `rust/Cargo.toml` and `rust/Cargo.lock`. ## Testing diff --git a/Rakefile b/Rakefile index 61abab2db19c0..25ba728e40344 100644 --- a/Rakefile +++ b/Rakefile @@ -116,7 +116,6 @@ task :release_updates, [:tag, :channel] do |_task, arguments| Rake::Task['update_multitool'].invoke Rake::Task['authors'].invoke Rake::Task['rust:version'].invoke(version) - Rake::Task['rust:update'].invoke Rake::Task['rust:changelogs'].invoke end diff --git a/common/remote-build/BUILD.bazel b/common/remote-build/BUILD.bazel index 2e63f308f24de..4ab4ce176d838 100755 --- a/common/remote-build/BUILD.bazel +++ b/common/remote-build/BUILD.bazel @@ -22,10 +22,12 @@ toolchain( exec_compatible_with = [ "@platforms//os:linux", "@platforms//cpu:x86_64", + "@llvm//constraints/libc:gnu.2.28", ], target_compatible_with = [ "@platforms//os:linux", "@platforms//cpu:x86_64", + "@llvm//constraints/libc:gnu.2.28", ], toolchain = "//common/remote-build/cc:cc-compiler-k8", toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", @@ -36,6 +38,7 @@ platform( constraint_values = [ "@platforms//os:linux", "@platforms//cpu:x86_64", + "@llvm//constraints/libc:gnu.2.28", ], exec_properties = { "container-image": "docker://docker.io/selenium/selenium-remote-build@sha256:ca164352826812f02eaa1b4dab89adcf5b3e57deb6798dd9f15d004099db59fe", diff --git a/rake_tasks/common.rb b/rake_tasks/common.rb index be86242a4dd04..069c0019510f0 100644 --- a/rake_tasks/common.rb +++ b/rake_tasks/common.rb @@ -9,7 +9,8 @@ 'py' => '//py/...', 'rb' => '//rb/...', 'dotnet' => '//dotnet/...', - 'javascript' => '//javascript/selenium-webdriver/...' + 'javascript' => '//javascript/selenium-webdriver/...', + 'rust' => '//rust/...' }.freeze # Shared utilities used by language-specific rake tasks diff --git a/rake_tasks/rust.rake b/rake_tasks/rust.rake index e955b884622cf..0b673cb4bedec 100644 --- a/rake_tasks/rust.rake +++ b/rake_tasks/rust.rake @@ -12,22 +12,6 @@ task :build do |_task, arguments| Bazel.execute('build', args, '//rust:selenium-manager') end -desc 'Update the rust lock files' -task :update do - # The first repin after a version bump can fail due to a stale checksum in - # Cargo.Bazel.lock; a second run lets Bazel reconcile and succeeds. - puts 'pinning cargo versions' - begin - Bazel.execute('fetch', ['--repo_env=CARGO_BAZEL_REPIN=true'], '@crates//:all') - rescue RuntimeError - puts 'repin failed, retrying...' - Bazel.execute('fetch', ['--repo_env=CARGO_BAZEL_REPIN=true'], '@crates//:all') - end -end - -desc 'Pin Rust dependencies' -task pin: :update - desc 'Format Rust code with rustfmt' task :format do puts ' Running rustfmt...' diff --git a/rust/AGENTS.md b/rust/AGENTS.md index 1e6d8cf610d80..1e478a3f2d325 100644 --- a/rust/AGENTS.md +++ b/rust/AGENTS.md @@ -6,7 +6,6 @@ ## Common commands - Build: `bazel build //rust/...` -- Repin crates: `CARGO_BAZEL_REPIN=true bazel run @crates//:all` ## Testing See `rust/TESTING.md` diff --git a/rust/BUILD.bazel b/rust/BUILD.bazel index 31b637b623753..8f8cd733c12af 100644 --- a/rust/BUILD.bazel +++ b/rust/BUILD.bazel @@ -1,4 +1,4 @@ -load("@crates//:defs.bzl", "all_crate_deps") +load("@crates//:defs.bzl", "aliases", "all_crate_deps") load("//rust:defs.bzl", "rust_binary", "rust_library", "rust_test", "rustfmt_config") rustfmt_config( @@ -76,6 +76,7 @@ rust_binary( # instead of an underscore name = "selenium-manager", srcs = ["src/main.rs"], + aliases = aliases(), edition = "2024", version = "0.4.44-nightly", visibility = ["//visibility:public"], @@ -91,6 +92,7 @@ rust_library( ["src/**/*.rs"], exclude = ["main.rs"], ), + aliases = aliases(), compile_data = [ "src/resources/rules.md", "src/resources/skills.md", @@ -124,6 +126,7 @@ filegroup( rust_test( name = "unit", size = "small", + aliases = aliases(), crate = ":selenium_manager", edition = "2024", tags = ["no-sandbox"], diff --git a/rust/Cargo.Bazel.lock b/rust/Cargo.Bazel.lock deleted file mode 100644 index c8e34d24c2fbd..0000000000000 --- a/rust/Cargo.Bazel.lock +++ /dev/null @@ -1,20827 +0,0 @@ -{ - "checksum": "d4bc49b450bf01c439a06b6d96230ba4ce9e39fa9ac02274f401867bffe56d54", - "crates": { - "addr2line 0.25.1": { - "name": "addr2line", - "version": "0.25.1", - "package_url": "https://github.com/gimli-rs/addr2line", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/addr2line/0.25.1/download", - "sha256": "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "addr2line", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "addr2line", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "gimli 0.32.3", - "target": "gimli" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.25.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "adler2 2.0.1": { - "name": "adler2", - "version": "2.0.1", - "package_url": "https://github.com/oyvindln/adler2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/adler2/2.0.1/download", - "sha256": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" - } - }, - "targets": [ - { - "Library": { - "crate_name": "adler2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "adler2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "2.0.1" - }, - "license": "0BSD OR MIT OR Apache-2.0", - "license_ids": [ - "0BSD", - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-0BSD" - }, - "aho-corasick 1.1.3": { - "name": "aho-corasick", - "version": "1.1.3", - "package_url": "https://github.com/BurntSushi/aho-corasick", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/aho-corasick/1.1.3/download", - "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" - } - }, - "targets": [ - { - "Library": { - "crate_name": "aho_corasick", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "aho_corasick", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "perf-literal", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.7.6", - "target": "memchr" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.1.3" - }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "android_system_properties 0.1.5": { - "name": "android_system_properties", - "version": "0.1.5", - "package_url": "https://github.com/nical/android_system_properties", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/android_system_properties/0.1.5/download", - "sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" - } - }, - "targets": [ - { - "Library": { - "crate_name": "android_system_properties", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "android_system_properties", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.5" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "anstream 0.6.20": { - "name": "anstream", - "version": "0.6.20", - "package_url": "https://github.com/rust-cli/anstyle.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/anstream/0.6.20/download", - "sha256": "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" - } - }, - "targets": [ - { - "Library": { - "crate_name": "anstream", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "anstream", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "auto", - "default", - "wincon" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anstyle 1.0.13", - "target": "anstyle" - }, - { - "id": "anstyle-parse 0.2.7", - "target": "anstyle_parse" - }, - { - "id": "anstyle-query 1.1.4", - "target": "anstyle_query" - }, - { - "id": "colorchoice 1.0.4", - "target": "colorchoice" - }, - { - "id": "is_terminal_polyfill 1.70.1", - "target": "is_terminal_polyfill" - }, - { - "id": "utf8parse 0.2.2", - "target": "utf8parse" - } - ], - "selects": { - "x86_64-pc-windows-msvc": [ - { - "id": "anstyle-wincon 3.0.10", - "target": "anstyle_wincon" - } - ] - } - }, - "edition": "2021", - "version": "0.6.20" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "anstyle 1.0.13": { - "name": "anstyle", - "version": "1.0.13", - "package_url": "https://github.com/rust-cli/anstyle.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/anstyle/1.0.13/download", - "sha256": "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" - } - }, - "targets": [ - { - "Library": { - "crate_name": "anstyle", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "anstyle", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.13" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "anstyle-parse 0.2.7": { - "name": "anstyle-parse", - "version": "0.2.7", - "package_url": "https://github.com/rust-cli/anstyle.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/anstyle-parse/0.2.7/download", - "sha256": "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "anstyle_parse", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "anstyle_parse", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "utf8" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "utf8parse 0.2.2", - "target": "utf8parse" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.7" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "anstyle-query 1.1.4": { - "name": "anstyle-query", - "version": "1.1.4", - "package_url": "https://github.com/rust-cli/anstyle.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.1.4/download", - "sha256": "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "anstyle_query", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "anstyle_query", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(windows)": [ - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "1.1.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "anstyle-wincon 3.0.10": { - "name": "anstyle-wincon", - "version": "3.0.10", - "package_url": "https://github.com/rust-cli/anstyle.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.10/download", - "sha256": "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "anstyle_wincon", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "anstyle_wincon", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "anstyle 1.0.13", - "target": "anstyle" - } - ], - "selects": { - "cfg(windows)": [ - { - "id": "once_cell_polyfill 1.70.1", - "target": "once_cell_polyfill" - }, - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "3.0.10" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "anyhow 1.0.100": { - "name": "anyhow", - "version": "1.0.100", - "package_url": "https://github.com/dtolnay/anyhow", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.100/download", - "sha256": "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" - } - }, - "targets": [ - { - "Library": { - "crate_name": "anyhow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "anyhow", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "backtrace", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anyhow 1.0.100", - "target": "build_script_build" - }, - { - "id": "backtrace 0.3.76", - "target": "backtrace" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.100" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "apple-flat-package 0.20.0": { - "name": "apple-flat-package", - "version": "0.20.0", - "package_url": "https://github.com/indygreg/apple-platform-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/apple-flat-package/0.20.0/download", - "sha256": "9c9d5a1fd8af4a376cc33d7e816a13f8ce127d52101f5dbc8061fb595397bea0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "apple_flat_package", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "apple_flat_package", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "apple-xar 0.20.0", - "target": "apple_xar" - }, - { - "id": "cpio-archive 0.10.0", - "target": "cpio_archive" - }, - { - "id": "flate2 1.1.2", - "target": "flate2" - }, - { - "id": "scroll 0.12.0", - "target": "scroll" - }, - { - "id": "serde 1.0.228", - "target": "serde" - }, - { - "id": "serde-xml-rs 0.6.0", - "target": "serde_xml_rs" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.20.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE" - }, - "apple-xar 0.20.0": { - "name": "apple-xar", - "version": "0.20.0", - "package_url": "https://github.com/indygreg/apple-platform-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/apple-xar/0.20.0/download", - "sha256": "9631e781df71ebd049d7b4988cdae88712324cb20eb127fd79026bc8f1335d93" - } - }, - "targets": [ - { - "Library": { - "crate_name": "apple_xar", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "apple_xar", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "signing" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "base64 0.22.1", - "target": "base64" - }, - { - "id": "bcder 0.7.6", - "target": "bcder" - }, - { - "id": "bzip2 0.4.4", - "target": "bzip2" - }, - { - "id": "chrono 0.4.42", - "target": "chrono" - }, - { - "id": "cryptographic-message-syntax 0.27.0", - "target": "cryptographic_message_syntax" - }, - { - "id": "digest 0.10.7", - "target": "digest" - }, - { - "id": "flate2 1.1.2", - "target": "flate2" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "md-5 0.10.6", - "target": "md5" - }, - { - "id": "rand 0.8.5", - "target": "rand" - }, - { - "id": "reqwest 0.12.23", - "target": "reqwest" - }, - { - "id": "scroll 0.12.0", - "target": "scroll" - }, - { - "id": "serde 1.0.228", - "target": "serde" - }, - { - "id": "serde-xml-rs 0.6.0", - "target": "serde_xml_rs" - }, - { - "id": "sha1 0.10.6", - "target": "sha1" - }, - { - "id": "sha2 0.10.9", - "target": "sha2" - }, - { - "id": "signature 2.2.0", - "target": "signature" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - }, - { - "id": "url 2.5.7", - "target": "url" - }, - { - "id": "x509-certificate 0.24.0", - "target": "x509_certificate" - }, - { - "id": "xml-rs 0.8.27", - "target": "xml" - }, - { - "id": "xz2 0.1.7", - "target": "xz2" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.20.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE" - }, - "ar 0.9.0": { - "name": "ar", - "version": "0.9.0", - "package_url": "https://github.com/mdsteele/rust-ar", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/ar/0.9.0/download", - "sha256": "d67af77d68a931ecd5cbd8a3b5987d63a1d1d1278f7f6a60ae33db485cdebb69" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ar", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ar", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.9.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "arbitrary 1.4.2": { - "name": "arbitrary", - "version": "1.4.2", - "package_url": "https://github.com/rust-fuzz/arbitrary/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/arbitrary/1.4.2/download", - "sha256": "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "arbitrary", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "arbitrary", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "1.4.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "arrayvec 0.7.6": { - "name": "arrayvec", - "version": "0.7.6", - "package_url": "https://github.com/bluss/arrayvec", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/arrayvec/0.7.6/download", - "sha256": "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" - } - }, - "targets": [ - { - "Library": { - "crate_name": "arrayvec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "arrayvec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "assert_cmd 2.0.17": { - "name": "assert_cmd", - "version": "2.0.17", - "package_url": "https://github.com/assert-rs/assert_cmd.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/assert_cmd/2.0.17/download", - "sha256": "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66" - } - }, - "targets": [ - { - "Library": { - "crate_name": "assert_cmd", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "assert_cmd", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "anstyle 1.0.13", - "target": "anstyle" - }, - { - "id": "assert_cmd 2.0.17", - "target": "build_script_build" - }, - { - "id": "bstr 1.12.0", - "target": "bstr" - }, - { - "id": "doc-comment 0.3.3", - "target": "doc_comment" - }, - { - "id": "predicates 3.1.3", - "target": "predicates" - }, - { - "id": "predicates-core 1.0.9", - "target": "predicates_core" - }, - { - "id": "predicates-tree 1.0.12", - "target": "predicates_tree" - }, - { - "id": "wait-timeout 0.2.1", - "target": "wait_timeout" - } - ], - "selects": { - "cfg(any())": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2021", - "version": "2.0.17" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "atomic-waker 1.1.2": { - "name": "atomic-waker", - "version": "1.1.2", - "package_url": "https://github.com/smol-rs/atomic-waker", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/atomic-waker/1.1.2/download", - "sha256": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "atomic_waker", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "atomic_waker", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.1.2" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "autocfg 1.5.0": { - "name": "autocfg", - "version": "1.5.0", - "package_url": "https://github.com/cuviper/autocfg", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/autocfg/1.5.0/download", - "sha256": "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "autocfg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "autocfg", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.5.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "backtrace 0.3.76": { - "name": "backtrace", - "version": "0.3.76", - "package_url": "https://github.com/rust-lang/backtrace-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.76/download", - "sha256": "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "backtrace", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "backtrace", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "rustc-demangle 0.1.26", - "target": "rustc_demangle" - } - ], - "selects": { - "cfg(any(windows, target_os = \"cygwin\"))": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ - { - "id": "addr2line 0.25.1", - "target": "addr2line" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "miniz_oxide 0.8.9", - "target": "miniz_oxide" - }, - { - "id": "object 0.37.3", - "target": "object" - } - ] - } - }, - "edition": "2021", - "version": "0.3.76" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "base64 0.22.1": { - "name": "base64", - "version": "0.22.1", - "package_url": "https://github.com/marshallpierce/rust-base64", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/base64/0.22.1/download", - "sha256": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "base64", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "base64", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.22.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "base64ct 1.8.0": { - "name": "base64ct", - "version": "1.8.0", - "package_url": "https://github.com/RustCrypto/formats", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/base64ct/1.8.0/download", - "sha256": "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" - } - }, - "targets": [ - { - "Library": { - "crate_name": "base64ct", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "base64ct", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2024", - "version": "1.8.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bcder 0.7.6": { - "name": "bcder", - "version": "0.7.6", - "package_url": "https://github.com/nlnetlabs/bcder", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bcder/0.7.6/download", - "sha256": "1f7c42c9913f68cf9390a225e81ad56a5c515347287eb98baa710090ca1de86d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bcder", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bcder", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "smallvec 1.15.1", - "target": "smallvec" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.6" - }, - "license": "BSD-3-Clause", - "license_ids": [ - "BSD-3-Clause" - ], - "license_file": "LICENSE" - }, - "bit-set 0.6.0": { - "name": "bit-set", - "version": "0.6.0", - "package_url": "https://github.com/contain-rs/bit-set", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bit-set/0.6.0/download", - "sha256": "f0481a0e032742109b1133a095184ee93d88f3dc9e0d28a5d033dc77a073f44f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bit_set", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bit_set", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bit-vec 0.7.0", - "target": "bit_vec" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.6.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bit-vec 0.7.0": { - "name": "bit-vec", - "version": "0.7.0", - "package_url": "https://github.com/contain-rs/bit-vec", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bit-vec/0.7.0/download", - "sha256": "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bit_vec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bit_vec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "0.7.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bitflags 2.9.4": { - "name": "bitflags", - "version": "2.9.4", - "package_url": "https://github.com/bitflags/bitflags", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bitflags/2.9.4/download", - "sha256": "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bitflags", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bitflags", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [], - "selects": { - "aarch64-apple-darwin": [ - "std" - ], - "aarch64-unknown-linux-gnu": [ - "std" - ], - "wasm32-wasip1": [ - "std" - ], - "x86_64-unknown-linux-gnu": [ - "std" - ], - "x86_64-unknown-nixos-gnu": [ - "std" - ] - } - }, - "edition": "2021", - "version": "2.9.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "block-buffer 0.10.4": { - "name": "block-buffer", - "version": "0.10.4", - "package_url": "https://github.com/RustCrypto/utils", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/block-buffer/0.10.4/download", - "sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" - } - }, - "targets": [ - { - "Library": { - "crate_name": "block_buffer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "block_buffer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "generic-array 0.14.7", - "target": "generic_array" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.10.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bstr 1.12.0": { - "name": "bstr", - "version": "1.12.0", - "package_url": "https://github.com/BurntSushi/bstr", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bstr/1.12.0/download", - "sha256": "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bstr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bstr", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std", - "unicode" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "regex-automata 0.4.11", - "target": "regex_automata" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.12.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bumpalo 3.19.0": { - "name": "bumpalo", - "version": "3.19.0", - "package_url": "https://github.com/fitzgen/bumpalo", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bumpalo/3.19.0/download", - "sha256": "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bumpalo", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bumpalo", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "3.19.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "byteorder 1.5.0": { - "name": "byteorder", - "version": "1.5.0", - "package_url": "https://github.com/BurntSushi/byteorder", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/byteorder/1.5.0/download", - "sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "byteorder", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "byteorder", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.5.0" - }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "bytes 1.10.1": { - "name": "bytes", - "version": "1.10.1", - "package_url": "https://github.com/tokio-rs/bytes", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bytes/1.10.1/download", - "sha256": "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bytes", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bytes", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.10.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "bzip2 0.4.4": { - "name": "bzip2", - "version": "0.4.4", - "package_url": "https://github.com/alexcrichton/bzip2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bzip2/0.4.4/download", - "sha256": "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bzip2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bzip2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bzip2-sys 0.1.13+1.0.8", - "target": "bzip2_sys" - }, - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.4" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bzip2 0.6.0": { - "name": "bzip2", - "version": "0.6.0", - "package_url": "https://github.com/trifectatechfoundation/bzip2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bzip2/0.6.0/download", - "sha256": "bea8dcd42434048e4f7a304411d9273a411f647446c1234a65ce0554923f4cff" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bzip2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bzip2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libbz2-rs-sys 0.2.2", - "target": "libbz2_rs_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.6.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "bzip2-sys 0.1.13+1.0.8": { - "name": "bzip2-sys", - "version": "0.1.13+1.0.8", - "package_url": "https://github.com/alexcrichton/bzip2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/bzip2-sys/0.1.13+1.0.8/download", - "sha256": "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" - } - }, - "targets": [ - { - "Library": { - "crate_name": "bzip2_sys", - "crate_root": "lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "bzip2_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bzip2-sys 0.1.13+1.0.8", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.1.13+1.0.8" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.39", - "target": "cc" - }, - { - "id": "pkg-config 0.3.32", - "target": "pkg_config" - } - ], - "selects": {} - }, - "links": "bzip2" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "cc 1.2.39": { - "name": "cc", - "version": "1.2.39", - "package_url": "https://github.com/rust-lang/cc-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cc/1.2.39/download", - "sha256": "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "parallel" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "find-msvc-tools 0.1.2", - "target": "find_msvc_tools" - }, - { - "id": "jobserver 0.1.34", - "target": "jobserver" - }, - { - "id": "shlex 1.3.0", - "target": "shlex" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2018", - "version": "1.2.39" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "cfb 0.7.3": { - "name": "cfb", - "version": "0.7.3", - "package_url": "https://github.com/mdsteele/rust-cfb", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cfb/0.7.3/download", - "sha256": "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cfb", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cfb", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "byteorder 1.5.0", - "target": "byteorder" - }, - { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "uuid 1.18.1", - "target": "uuid" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "cfg-if 1.0.3": { - "name": "cfg-if", - "version": "1.0.3", - "package_url": "https://github.com/rust-lang/cfg-if", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.3/download", - "sha256": "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cfg_if", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cfg_if", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "cfg_aliases 0.2.1": { - "name": "cfg_aliases", - "version": "0.2.1", - "package_url": "https://github.com/katharostech/cfg_aliases", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cfg_aliases/0.2.1/download", - "sha256": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cfg_aliases", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cfg_aliases", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.2.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "chrono 0.4.42": { - "name": "chrono", - "version": "0.4.42", - "package_url": "https://github.com/chronotope/chrono", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.42/download", - "sha256": "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "chrono", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "chrono", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "clock", - "default", - "iana-time-zone", - "js-sys", - "now", - "oldtime", - "serde", - "std", - "wasm-bindgen", - "wasmbind", - "winapi", - "windows-link" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "num-traits 0.2.19", - "target": "num_traits" - }, - { - "id": "serde 1.0.228", - "target": "serde" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ], - "wasm32-unknown-unknown": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ] - } - }, - "edition": "2021", - "version": "0.4.42" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE.txt" - }, - "clap 4.5.48": { - "name": "clap", - "version": "4.5.48", - "package_url": "https://github.com/clap-rs/clap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/clap/4.5.48/download", - "sha256": "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" - } - }, - "targets": [ - { - "Library": { - "crate_name": "clap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "clap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "cargo", - "color", - "default", - "derive", - "error-context", - "help", - "std", - "suggestions", - "usage" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "clap_builder 4.5.48", - "target": "clap_builder" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "clap_derive 4.5.47", - "target": "clap_derive" - } - ], - "selects": {} - }, - "version": "4.5.48" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "clap_builder 4.5.48": { - "name": "clap_builder", - "version": "4.5.48", - "package_url": "https://github.com/clap-rs/clap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.48/download", - "sha256": "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "clap_builder", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "clap_builder", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "cargo", - "color", - "error-context", - "help", - "std", - "suggestions", - "usage" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anstream 0.6.20", - "target": "anstream" - }, - { - "id": "anstyle 1.0.13", - "target": "anstyle" - }, - { - "id": "clap_lex 0.7.5", - "target": "clap_lex" - }, - { - "id": "strsim 0.11.1", - "target": "strsim" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "4.5.48" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "clap_derive 4.5.47": { - "name": "clap_derive", - "version": "4.5.47", - "package_url": "https://github.com/clap-rs/clap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.47/download", - "sha256": "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "clap_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "clap_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "heck 0.5.0", - "target": "heck" - }, - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "4.5.47" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "clap_lex 0.7.5": { - "name": "clap_lex", - "version": "0.7.5", - "package_url": "https://github.com/clap-rs/clap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.5/download", - "sha256": "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" - } - }, - "targets": [ - { - "Library": { - "crate_name": "clap_lex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "clap_lex", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.7.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "colorchoice 1.0.4": { - "name": "colorchoice", - "version": "1.0.4", - "package_url": "https://github.com/rust-cli/anstyle.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/colorchoice/1.0.4/download", - "sha256": "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" - } - }, - "targets": [ - { - "Library": { - "crate_name": "colorchoice", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "colorchoice", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "1.0.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "const-oid 0.9.6": { - "name": "const-oid", - "version": "0.9.6", - "package_url": "https://github.com/RustCrypto/formats/tree/master/const-oid", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/const-oid/0.9.6/download", - "sha256": "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "const_oid", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "const_oid", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.9.6" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "core-foundation-sys 0.8.7": { - "name": "core-foundation-sys", - "version": "0.8.7", - "package_url": "https://github.com/servo/core-foundation-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/core-foundation-sys/0.8.7/download", - "sha256": "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "core_foundation_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "core_foundation_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "link" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.8.7" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "cpio-archive 0.10.0": { - "name": "cpio-archive", - "version": "0.10.0", - "package_url": "https://github.com/indygreg/apple-platform-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cpio-archive/0.10.0/download", - "sha256": "f11d34b07689c21889fc89bd7cc885b3244b0157bbededf4a1c159832cd0df05" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cpio_archive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cpio_archive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "chrono 0.4.42", - "target": "chrono" - }, - { - "id": "is_executable 1.0.5", - "target": "is_executable" - }, - { - "id": "simple-file-manifest 0.11.0", - "target": "simple_file_manifest" - }, - { - "id": "thiserror 1.0.69", - "target": "thiserror" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.10.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE" - }, - "cpufeatures 0.2.17": { - "name": "cpufeatures", - "version": "0.2.17", - "package_url": "https://github.com/RustCrypto/utils", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cpufeatures/0.2.17/download", - "sha256": "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cpufeatures", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cpufeatures", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "aarch64-linux-android": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2018", - "version": "0.2.17" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "crc 3.3.0": { - "name": "crc", - "version": "3.3.0", - "package_url": "https://github.com/mrhooray/crc-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/crc/3.3.0/download", - "sha256": "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" - } - }, - "targets": [ - { - "Library": { - "crate_name": "crc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "crc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "crc-catalog 2.4.0", - "target": "crc_catalog" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.3.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "crc-catalog 2.4.0": { - "name": "crc-catalog", - "version": "2.4.0", - "package_url": "https://github.com/akhilles/crc-catalog.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/crc-catalog/2.4.0/download", - "sha256": "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" - } - }, - "targets": [ - { - "Library": { - "crate_name": "crc_catalog", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "crc_catalog", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "2.4.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSES" - }, - "crc32fast 1.5.0": { - "name": "crc32fast", - "version": "1.5.0", - "package_url": "https://github.com/srijs/rust-crc32fast", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/crc32fast/1.5.0/download", - "sha256": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" - } - }, - "targets": [ - { - "Library": { - "crate_name": "crc32fast", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "crc32fast", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "crc32fast 1.5.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.5.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "crypto-common 0.1.6": { - "name": "crypto-common", - "version": "0.1.6", - "package_url": "https://github.com/RustCrypto/traits", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/crypto-common/0.1.6/download", - "sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "crypto_common", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "crypto_common", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "generic-array 0.14.7", - "target": "generic_array" - }, - { - "id": "typenum 1.18.0", - "target": "typenum" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "cryptographic-message-syntax 0.27.0": { - "name": "cryptographic-message-syntax", - "version": "0.27.0", - "package_url": "https://github.com/indygreg/cryptography-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/cryptographic-message-syntax/0.27.0/download", - "sha256": "97a99e58d7755c646cb3f2a138d99f90da4c495282e1700b82daff8a48759ce0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "cryptographic_message_syntax", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "cryptographic_message_syntax", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "http" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bcder 0.7.6", - "target": "bcder" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "chrono 0.4.42", - "target": "chrono" - }, - { - "id": "hex 0.4.3", - "target": "hex" - }, - { - "id": "pem 3.0.5", - "target": "pem" - }, - { - "id": "reqwest 0.12.23", - "target": "reqwest" - }, - { - "id": "ring 0.17.14", - "target": "ring" - }, - { - "id": "signature 2.2.0", - "target": "signature" - }, - { - "id": "x509-certificate 0.24.0", - "target": "x509_certificate" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.27.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE" - }, - "debpkg 0.6.0": { - "name": "debpkg", - "version": "0.6.0", - "package_url": "https://github.com/schultetwin1/debpkg/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/debpkg/0.6.0/download", - "sha256": "7ffffa9a03449467cfac11c9a4260556f477de22a935bb5e9475153de323c337" - } - }, - "targets": [ - { - "Library": { - "crate_name": "debpkg", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "debpkg", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "ar 0.9.0", - "target": "ar" - }, - { - "id": "arrayvec 0.7.6", - "target": "arrayvec" - }, - { - "id": "bzip2 0.4.4", - "target": "bzip2" - }, - { - "id": "flate2 1.1.2", - "target": "flate2" - }, - { - "id": "indexmap 1.9.3", - "target": "indexmap" - }, - { - "id": "infer 0.8.1", - "target": "infer" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "tar 0.4.44", - "target": "tar" - }, - { - "id": "xz2 0.1.7", - "target": "xz2" - }, - { - "id": "zstd 0.11.2+zstd.1.5.2", - "target": "zstd" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "der 0.7.10": { - "name": "der", - "version": "0.7.10", - "package_url": "https://github.com/RustCrypto/formats/tree/master/der", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/der/0.7.10/download", - "sha256": "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "der", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "der", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "oid", - "zeroize" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "const-oid 0.9.6", - "target": "const_oid" - }, - { - "id": "zeroize 1.8.2", - "target": "zeroize" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.7.10" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "deranged 0.5.4": { - "name": "deranged", - "version": "0.5.4", - "package_url": "https://github.com/jhpratt/deranged", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/deranged/0.5.4/download", - "sha256": "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071" - } - }, - "targets": [ - { - "Library": { - "crate_name": "deranged", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "deranged", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "powerfmt" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "powerfmt 0.2.0", - "target": "powerfmt" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-Apache" - }, - "derive_arbitrary 1.4.2": { - "name": "derive_arbitrary", - "version": "1.4.2", - "package_url": "https://github.com/rust-fuzz/arbitrary", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/derive_arbitrary/1.4.2/download", - "sha256": "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "derive_arbitrary", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "derive_arbitrary", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.4.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "difflib 0.4.0": { - "name": "difflib", - "version": "0.4.0", - "package_url": "https://github.com/DimaKudosh/difflib", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/difflib/0.4.0/download", - "sha256": "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "difflib", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "difflib", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.4.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": null - }, - "digest 0.10.7": { - "name": "digest", - "version": "0.10.7", - "package_url": "https://github.com/RustCrypto/traits", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/digest/0.10.7/download", - "sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" - } - }, - "targets": [ - { - "Library": { - "crate_name": "digest", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "digest", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "block-buffer", - "core-api", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "block-buffer 0.10.4", - "target": "block_buffer" - }, - { - "id": "crypto-common 0.1.6", - "target": "crypto_common" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.10.7" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "directories 6.0.0": { - "name": "directories", - "version": "6.0.0", - "package_url": "https://github.com/soc/directories-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/directories/6.0.0/download", - "sha256": "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "directories", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "directories", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "dirs-sys 0.5.0", - "target": "dirs_sys" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "6.0.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "dirs-sys 0.5.0": { - "name": "dirs-sys", - "version": "0.5.0", - "package_url": "https://github.com/dirs-dev/dirs-sys-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/dirs-sys/0.5.0/download", - "sha256": "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" - } - }, - "targets": [ - { - "Library": { - "crate_name": "dirs_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "dirs_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "option-ext 0.2.0", - "target": "option_ext" - } - ], - "selects": { - "cfg(target_os = \"redox\")": [ - { - "id": "redox_users 0.5.2", - "target": "redox_users" - } - ], - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.61.1", - "target": "windows_sys" - } - ] - } - }, - "edition": "2015", - "version": "0.5.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "displaydoc 0.2.5": { - "name": "displaydoc", - "version": "0.2.5", - "package_url": "https://github.com/yaahc/displaydoc", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/displaydoc/0.2.5/download", - "sha256": "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "displaydoc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "displaydoc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "doc-comment 0.3.3": { - "name": "doc-comment", - "version": "0.3.3", - "package_url": "https://github.com/GuillaumeGomez/doc-comment", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/doc-comment/0.3.3/download", - "sha256": "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" - } - }, - "targets": [ - { - "Library": { - "crate_name": "doc_comment", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "doc_comment", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "doc-comment 0.3.3", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.3.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "env_filter 0.1.3": { - "name": "env_filter", - "version": "0.1.3", - "package_url": "https://github.com/rust-cli/env_logger", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.3/download", - "sha256": "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "env_filter", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "env_filter", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "regex" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "regex 1.11.3", - "target": "regex" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "env_home 0.1.0": { - "name": "env_home", - "version": "0.1.0", - "package_url": "https://github.com/notpeter/env-home", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/env_home/0.1.0/download", - "sha256": "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe" - } - }, - "targets": [ - { - "Library": { - "crate_name": "env_home", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "env_home", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "env_logger 0.11.8": { - "name": "env_logger", - "version": "0.11.8", - "package_url": "https://github.com/rust-cli/env_logger", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.8/download", - "sha256": "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "env_logger", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "env_logger", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "auto-color", - "color", - "default", - "humantime", - "regex" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anstream 0.6.20", - "target": "anstream" - }, - { - "id": "anstyle 1.0.13", - "target": "anstyle" - }, - { - "id": "env_filter 0.1.3", - "target": "env_filter" - }, - { - "id": "jiff 0.2.15", - "target": "jiff" - }, - { - "id": "log 0.4.28", - "target": "log" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.11.8" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "equivalent 1.0.2": { - "name": "equivalent", - "version": "1.0.2", - "package_url": "https://github.com/indexmap-rs/equivalent", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/equivalent/1.0.2/download", - "sha256": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "equivalent", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "equivalent", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.0.2" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "errno 0.3.14": { - "name": "errno", - "version": "0.3.14", - "package_url": "https://github.com/lambda-fairy/rust-errno", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/errno/0.3.14/download", - "sha256": "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "errno", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "errno", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(target_os = \"hermit\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(target_os = \"wasi\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.61.1", - "target": "windows_sys" - } - ] - } - }, - "edition": "2018", - "version": "0.3.14" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "exitcode 1.1.2": { - "name": "exitcode", - "version": "1.1.2", - "package_url": "https://github.com/benwilber/exitcode", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/exitcode/1.1.2/download", - "sha256": "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" - } - }, - "targets": [ - { - "Library": { - "crate_name": "exitcode", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "exitcode", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "1.1.2" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": "LICENSE" - }, - "fastrand 2.3.0": { - "name": "fastrand", - "version": "2.3.0", - "package_url": "https://github.com/smol-rs/fastrand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/fastrand/2.3.0/download", - "sha256": "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" - } - }, - "targets": [ - { - "Library": { - "crate_name": "fastrand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "fastrand", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "2.3.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "filetime 0.2.26": { - "name": "filetime", - "version": "0.2.26", - "package_url": "https://github.com/alexcrichton/filetime", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.26/download", - "sha256": "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" - } - }, - "targets": [ - { - "Library": { - "crate_name": "filetime", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "filetime", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - } - ], - "selects": { - "cfg(target_os = \"redox\")": [ - { - "id": "libredox 0.1.10", - "target": "libredox" - } - ], - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } - ] - } - }, - "edition": "2018", - "version": "0.2.26" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "filetime_creation 0.2.0": { - "name": "filetime_creation", - "version": "0.2.0", - "package_url": "https://github.com/czy-29/filetime_creation", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/filetime_creation/0.2.0/download", - "sha256": "c25b5d475550e559de5b0c0084761c65325444e3b6c9e298af9cefe7a9ef3a5f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "filetime_creation", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "filetime_creation", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "filetime 0.2.26", - "target": "filetime" - } - ], - "selects": { - "cfg(windows)": [ - { - "id": "windows-sys 0.52.0", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "0.2.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "find-msvc-tools 0.1.2": { - "name": "find-msvc-tools", - "version": "0.1.2", - "package_url": "https://github.com/rust-lang/cc-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/find-msvc-tools/0.1.2/download", - "sha256": "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959" - } - }, - "targets": [ - { - "Library": { - "crate_name": "find_msvc_tools", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "find_msvc_tools", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.1.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "flate2 1.1.2": { - "name": "flate2", - "version": "1.1.2", - "package_url": "https://github.com/rust-lang/flate2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/flate2/1.1.2/download", - "sha256": "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "flate2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "flate2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "any_impl", - "any_zlib", - "default", - "libz-rs-sys", - "miniz_oxide", - "rust_backend", - "zlib-rs" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "crc32fast 1.5.0", - "target": "crc32fast" - }, - { - "id": "libz-rs-sys 0.5.2", - "target": "libz_rs_sys" - }, - { - "id": "miniz_oxide 0.8.9", - "target": "miniz_oxide" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.1.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "fnv 1.0.7": { - "name": "fnv", - "version": "1.0.7", - "package_url": "https://github.com/servo/rust-fnv", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/fnv/1.0.7/download", - "sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "fnv", - "crate_root": "lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "fnv", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.0.7" - }, - "license": "Apache-2.0 / MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "form_urlencoded 1.2.2": { - "name": "form_urlencoded", - "version": "1.2.2", - "package_url": "https://github.com/servo/rust-url", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/form_urlencoded/1.2.2/download", - "sha256": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" - } - }, - "targets": [ - { - "Library": { - "crate_name": "form_urlencoded", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "form_urlencoded", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "percent-encoding 2.3.2", - "target": "percent_encoding" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.2.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "fs2 0.4.3": { - "name": "fs2", - "version": "0.4.3", - "package_url": "https://github.com/danburkert/fs2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/fs2/0.4.3/download", - "sha256": "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" - } - }, - "targets": [ - { - "Library": { - "crate_name": "fs2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "fs2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "winapi 0.3.9", - "target": "winapi" - } - ] - } - }, - "edition": "2015", - "version": "0.4.3" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "fs_extra 1.3.0": { - "name": "fs_extra", - "version": "1.3.0", - "package_url": "https://github.com/webdesus/fs_extra", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/fs_extra/1.3.0/download", - "sha256": "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "fs_extra", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "fs_extra", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.3.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "futures-channel 0.3.31": { - "name": "futures-channel", - "version": "0.3.31", - "package_url": "https://github.com/rust-lang/futures-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-channel/0.3.31/download", - "sha256": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_channel", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_channel", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "futures-sink", - "sink", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-sink 0.3.31", - "target": "futures_sink" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.31" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "futures-core 0.3.31": { - "name": "futures-core", - "version": "0.3.31", - "package_url": "https://github.com/rust-lang/futures-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-core/0.3.31/download", - "sha256": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": { - "aarch64-apple-darwin": [ - "default" - ], - "aarch64-unknown-linux-gnu": [ - "default" - ], - "x86_64-pc-windows-msvc": [ - "default" - ], - "x86_64-unknown-linux-gnu": [ - "default" - ], - "x86_64-unknown-nixos-gnu": [ - "default" - ] - } - }, - "edition": "2018", - "version": "0.3.31" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "futures-io 0.3.31": { - "name": "futures-io", - "version": "0.3.31", - "package_url": "https://github.com/rust-lang/futures-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-io/0.3.31/download", - "sha256": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_io", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_io", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.31" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "futures-sink 0.3.31": { - "name": "futures-sink", - "version": "0.3.31", - "package_url": "https://github.com/rust-lang/futures-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-sink/0.3.31/download", - "sha256": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_sink", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_sink", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.3.31" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "futures-task 0.3.31": { - "name": "futures-task", - "version": "0.3.31", - "package_url": "https://github.com/rust-lang/futures-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-task/0.3.31/download", - "sha256": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_task", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_task", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.31" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "futures-util 0.3.31": { - "name": "futures-util", - "version": "0.3.31", - "package_url": "https://github.com/rust-lang/futures-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/futures-util/0.3.31/download", - "sha256": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" - } - }, - "targets": [ - { - "Library": { - "crate_name": "futures_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "futures_util", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "futures-io", - "futures-sink", - "io", - "memchr", - "sink", - "slab", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-io 0.3.31", - "target": "futures_io" - }, - { - "id": "futures-sink 0.3.31", - "target": "futures_sink" - }, - { - "id": "futures-task 0.3.31", - "target": "futures_task" - }, - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "pin-utils 0.1.0", - "target": "pin_utils" - }, - { - "id": "slab 0.4.11", - "target": "slab" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.31" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "generic-array 0.14.7": { - "name": "generic-array", - "version": "0.14.7", - "package_url": "https://github.com/fizyk20/generic-array.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/generic-array/0.14.7/download", - "sha256": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "generic_array", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "generic_array", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "more_lengths" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "generic-array 0.14.7", - "target": "build_script_build" - }, - { - "id": "typenum 1.18.0", - "target": "typenum" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.14.7" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "version_check 0.9.5", - "target": "version_check" - } - ], - "selects": {} - } - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "getrandom 0.2.16": { - "name": "getrandom", - "version": "0.2.16", - "package_url": "https://github.com/rust-random/getrandom", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.16/download", - "sha256": "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" - } - }, - "targets": [ - { - "Library": { - "crate_name": "getrandom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "getrandom", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - } - ], - "selects": { - "cfg(target_os = \"wasi\")": [ - { - "id": "wasi 0.11.1+wasi-snapshot-preview1", - "target": "wasi" - } - ], - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2018", - "version": "0.2.16" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "getrandom 0.3.3": { - "name": "getrandom", - "version": "0.3.3", - "package_url": "https://github.com/rust-random/getrandom", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/getrandom/0.3.3/download", - "sha256": "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" - } - }, - "targets": [ - { - "Library": { - "crate_name": "getrandom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "getrandom", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [], - "selects": { - "x86_64-pc-windows-msvc": [ - "std" - ] - } - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "getrandom 0.3.3", - "target": "build_script_build" - } - ], - "selects": { - "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [ - { - "id": "wasi 0.14.7+wasi-0.2.4", - "target": "wasi" - } - ], - "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))": [ - { - "id": "r-efi 5.3.0", - "target": "r_efi" - } - ], - "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(target_os = \"netbsd\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(target_os = \"solaris\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(target_os = \"vxworks\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2021", - "version": "0.3.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "gimli 0.32.3": { - "name": "gimli", - "version": "0.32.3", - "package_url": "https://github.com/gimli-rs/gimli", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/gimli/0.32.3/download", - "sha256": "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "gimli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "gimli", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "read", - "read-core" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.32.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "glob 0.3.3": { - "name": "glob", - "version": "0.3.3", - "package_url": "https://github.com/rust-lang/glob", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/glob/0.3.3/download", - "sha256": "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" - } - }, - "targets": [ - { - "Library": { - "crate_name": "glob", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "glob", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.3.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "hashbrown 0.12.3": { - "name": "hashbrown", - "version": "0.12.3", - "package_url": "https://github.com/rust-lang/hashbrown", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.12.3/download", - "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - } - }, - "targets": [ - { - "Library": { - "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "hashbrown", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "raw" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.12.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "hashbrown 0.16.0": { - "name": "hashbrown", - "version": "0.16.0", - "package_url": "https://github.com/rust-lang/hashbrown", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.16.0/download", - "sha256": "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "hashbrown", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "hashbrown", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.16.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "heck 0.5.0": { - "name": "heck", - "version": "0.5.0", - "package_url": "https://github.com/withoutboats/heck", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/heck/0.5.0/download", - "sha256": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - } - }, - "targets": [ - { - "Library": { - "crate_name": "heck", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "heck", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.5.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "hex 0.4.3": { - "name": "hex", - "version": "0.4.3", - "package_url": "https://github.com/KokaKiwi/rust-hex", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/hex/0.4.3/download", - "sha256": "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - } - }, - "targets": [ - { - "Library": { - "crate_name": "hex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "hex", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "http 1.3.1": { - "name": "http", - "version": "1.3.1", - "package_url": "https://github.com/hyperium/http", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/http/1.3.1/download", - "sha256": "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" - } - }, - "targets": [ - { - "Library": { - "crate_name": "http", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "http", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "itoa 1.0.15", - "target": "itoa" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.3.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "http-body 1.0.1": { - "name": "http-body", - "version": "1.0.1", - "package_url": "https://github.com/hyperium/http-body", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/http-body/1.0.1/download", - "sha256": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" - } - }, - "targets": [ - { - "Library": { - "crate_name": "http_body", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "http_body", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "http 1.3.1", - "target": "http" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "http-body-util 0.1.3": { - "name": "http-body-util", - "version": "0.1.3", - "package_url": "https://github.com/hyperium/http-body", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/http-body-util/0.1.3/download", - "sha256": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "http_body_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "http_body_util", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "httparse 1.10.1": { - "name": "httparse", - "version": "1.10.1", - "package_url": "https://github.com/seanmonstar/httparse", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/httparse/1.10.1/download", - "sha256": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - } - }, - "targets": [ - { - "Library": { - "crate_name": "httparse", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "httparse", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "httparse 1.10.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.10.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "hyper 1.7.0": { - "name": "hyper", - "version": "1.7.0", - "package_url": "https://github.com/hyperium/hyper", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/hyper/1.7.0/download", - "sha256": "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "hyper", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "hyper", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "client", - "default", - "http1" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "atomic-waker 1.1.2", - "target": "atomic_waker" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "httparse 1.10.1", - "target": "httparse" - }, - { - "id": "itoa 1.0.15", - "target": "itoa" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "pin-utils 0.1.0", - "target": "pin_utils" - }, - { - "id": "smallvec 1.15.1", - "target": "smallvec" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "want 0.3.1", - "target": "want" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.7.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "hyper-rustls 0.27.7": { - "name": "hyper-rustls", - "version": "0.27.7", - "package_url": "https://github.com/rustls/hyper-rustls", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/hyper-rustls/0.27.7/download", - "sha256": "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" - } - }, - "targets": [ - { - "Library": { - "crate_name": "hyper_rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "hyper_rustls", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "http1", - "ring", - "tls12", - "webpki-roots", - "webpki-tokio" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "hyper 1.7.0", - "target": "hyper" - }, - { - "id": "hyper-util 0.1.17", - "target": "hyper_util" - }, - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types", - "alias": "pki_types" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "tokio-rustls 0.26.4", - "target": "tokio_rustls" - }, - { - "id": "tower-service 0.3.3", - "target": "tower_service" - }, - { - "id": "webpki-roots 1.0.2", - "target": "webpki_roots" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.27.7" - }, - "license": "Apache-2.0 OR ISC OR MIT", - "license_ids": [ - "Apache-2.0", - "ISC", - "MIT" - ], - "license_file": "LICENSE" - }, - "hyper-util 0.1.17": { - "name": "hyper-util", - "version": "0.1.17", - "package_url": "https://github.com/hyperium/hyper-util", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/hyper-util/0.1.17/download", - "sha256": "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "hyper_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "hyper_util", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "client", - "client-legacy", - "client-proxy", - "default", - "http1", - "tokio" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "base64 0.22.1", - "target": "base64" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "hyper 1.7.0", - "target": "hyper" - }, - { - "id": "ipnet 2.11.0", - "target": "ipnet" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "percent-encoding 2.3.2", - "target": "percent_encoding" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "tower-service 0.3.3", - "target": "tower_service" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.17" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "iana-time-zone 0.1.64": { - "name": "iana-time-zone", - "version": "0.1.64", - "package_url": "https://github.com/strawlab/iana-time-zone", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.64/download", - "sha256": "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "iana_time_zone", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "iana_time_zone", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "fallback" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ], - "cfg(target_os = \"android\")": [ - { - "id": "android_system_properties 0.1.5", - "target": "android_system_properties" - } - ], - "cfg(target_os = \"haiku\")": [ - { - "id": "iana-time-zone-haiku 0.1.2", - "target": "iana_time_zone_haiku" - } - ], - "cfg(target_os = \"windows\")": [ - { - "id": "windows-core 0.62.1", - "target": "windows_core" - } - ], - "cfg(target_vendor = \"apple\")": [ - { - "id": "core-foundation-sys 0.8.7", - "target": "core_foundation_sys" - } - ] - } - }, - "edition": "2021", - "version": "0.1.64" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "iana-time-zone-haiku 0.1.2": { - "name": "iana-time-zone-haiku", - "version": "0.1.2", - "package_url": "https://github.com/strawlab/iana-time-zone", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download", - "sha256": "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "iana_time_zone_haiku", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "iana_time_zone_haiku", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "iana-time-zone-haiku 0.1.2", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.39", - "target": "cc" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "icu_collections 2.0.0": { - "name": "icu_collections", - "version": "2.0.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_collections/2.0.0/download", - "sha256": "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_collections", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_collections", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "potential_utf 0.1.3", - "target": "potential_utf" - }, - { - "id": "yoke 0.8.0", - "target": "yoke" - }, - { - "id": "zerofrom 0.1.6", - "target": "zerofrom" - }, - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "icu_locale_core 2.0.0": { - "name": "icu_locale_core", - "version": "2.0.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_locale_core/2.0.0/download", - "sha256": "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_locale_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_locale_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "zerovec" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "litemap 0.8.0", - "target": "litemap" - }, - { - "id": "tinystr 0.8.1", - "target": "tinystr" - }, - { - "id": "writeable 0.6.1", - "target": "writeable" - }, - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "icu_normalizer 2.0.0": { - "name": "icu_normalizer", - "version": "2.0.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_normalizer/2.0.0/download", - "sha256": "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_normalizer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_normalizer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "compiled_data" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "icu_collections 2.0.0", - "target": "icu_collections" - }, - { - "id": "icu_normalizer_data 2.0.0", - "target": "icu_normalizer_data" - }, - { - "id": "icu_provider 2.0.0", - "target": "icu_provider" - }, - { - "id": "smallvec 1.15.1", - "target": "smallvec" - }, - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "icu_normalizer_data 2.0.0": { - "name": "icu_normalizer_data", - "version": "2.0.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_normalizer_data/2.0.0/download", - "sha256": "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_normalizer_data", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_normalizer_data", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "icu_normalizer_data 2.0.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "icu_properties 2.0.1": { - "name": "icu_properties", - "version": "2.0.1", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_properties/2.0.1/download", - "sha256": "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_properties", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_properties", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "compiled_data" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "icu_collections 2.0.0", - "target": "icu_collections" - }, - { - "id": "icu_locale_core 2.0.0", - "target": "icu_locale_core" - }, - { - "id": "icu_properties_data 2.0.1", - "target": "icu_properties_data" - }, - { - "id": "icu_provider 2.0.0", - "target": "icu_provider" - }, - { - "id": "potential_utf 0.1.3", - "target": "potential_utf" - }, - { - "id": "zerotrie 0.2.2", - "target": "zerotrie" - }, - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.1" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "icu_properties_data 2.0.1": { - "name": "icu_properties_data", - "version": "2.0.1", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_properties_data/2.0.1/download", - "sha256": "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_properties_data", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_properties_data", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "icu_properties_data 2.0.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "icu_provider 2.0.0": { - "name": "icu_provider", - "version": "2.0.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/icu_provider/2.0.0/download", - "sha256": "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" - } - }, - "targets": [ - { - "Library": { - "crate_name": "icu_provider", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "icu_provider", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "baked", - "zerotrie" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "icu_locale_core 2.0.0", - "target": "icu_locale_core" - }, - { - "id": "stable_deref_trait 1.2.0", - "target": "stable_deref_trait" - }, - { - "id": "tinystr 0.8.1", - "target": "tinystr" - }, - { - "id": "writeable 0.6.1", - "target": "writeable" - }, - { - "id": "yoke 0.8.0", - "target": "yoke" - }, - { - "id": "zerofrom 0.1.6", - "target": "zerofrom" - }, - { - "id": "zerotrie 0.2.2", - "target": "zerotrie" - }, - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "idna 1.1.0": { - "name": "idna", - "version": "1.1.0", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/idna/1.1.0/download", - "sha256": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" - } - }, - "targets": [ - { - "Library": { - "crate_name": "idna", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "idna", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "compiled_data", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "idna_adapter 1.2.1", - "target": "idna_adapter" - }, - { - "id": "smallvec 1.15.1", - "target": "smallvec" - }, - { - "id": "utf8_iter 1.0.4", - "target": "utf8_iter" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "idna_adapter 1.2.1": { - "name": "idna_adapter", - "version": "1.2.1", - "package_url": "https://github.com/hsivonen/idna_adapter", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/idna_adapter/1.2.1/download", - "sha256": "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" - } - }, - "targets": [ - { - "Library": { - "crate_name": "idna_adapter", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "idna_adapter", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "compiled_data" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "icu_normalizer 2.0.0", - "target": "icu_normalizer" - }, - { - "id": "icu_properties 2.0.1", - "target": "icu_properties" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.2.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 1.9.3": { - "name": "indexmap", - "version": "1.9.3", - "package_url": "https://github.com/bluss/indexmap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/indexmap/1.9.3/download", - "sha256": "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" - } - }, - "targets": [ - { - "Library": { - "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "indexmap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "hashbrown 0.12.3", - "target": "hashbrown" - }, - { - "id": "indexmap 1.9.3", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.9.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.5.0", - "target": "autocfg" - } - ], - "selects": {} - } - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "indexmap 2.11.4": { - "name": "indexmap", - "version": "2.11.4", - "package_url": "https://github.com/indexmap-rs/indexmap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/indexmap/2.11.4/download", - "sha256": "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" - } - }, - "targets": [ - { - "Library": { - "crate_name": "indexmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "indexmap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "equivalent 1.0.2", - "target": "equivalent" - }, - { - "id": "hashbrown 0.16.0", - "target": "hashbrown" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.11.4" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "infer 0.8.1": { - "name": "infer", - "version": "0.8.1", - "package_url": "https://github.com/bojand/infer", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/infer/0.8.1/download", - "sha256": "e035cede526e0b21d5adffc9fa0eb4ef5d6026fe9c5b0bfe8084b9472b587a55" - } - }, - "targets": [ - { - "Library": { - "crate_name": "infer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "infer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "cfb", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfb 0.7.3", - "target": "cfb" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.8.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "infer 0.19.0": { - "name": "infer", - "version": "0.19.0", - "package_url": "https://github.com/bojand/infer", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/infer/0.19.0/download", - "sha256": "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "infer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "infer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "cfb", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfb 0.7.3", - "target": "cfb" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.19.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "io-uring 0.7.10": { - "name": "io-uring", - "version": "0.7.10", - "package_url": "https://github.com/tokio-rs/io-uring", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/io-uring/0.7.10/download", - "sha256": "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "io_uring", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "io_uring", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.9.4", - "target": "bitflags" - }, - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "io-uring 0.7.10", - "target": "build_script_build" - }, - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.7.10" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "ipnet 2.11.0": { - "name": "ipnet", - "version": "2.11.0", - "package_url": "https://github.com/krisprice/ipnet", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/ipnet/2.11.0/download", - "sha256": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ipnet", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ipnet", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "2.11.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "iri-string 0.7.8": { - "name": "iri-string", - "version": "0.7.8", - "package_url": "https://github.com/lo48576/iri-string", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/iri-string/0.7.8/download", - "sha256": "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "iri_string", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "iri_string", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.7.8" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE.txt" - }, - "is_executable 1.0.5": { - "name": "is_executable", - "version": "1.0.5", - "package_url": "https://github.com/fitzgen/is_executable", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/is_executable/1.0.5/download", - "sha256": "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4" - } - }, - "targets": [ - { - "Library": { - "crate_name": "is_executable", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "is_executable", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(target_os = \"windows\")": [ - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "1.0.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "is_terminal_polyfill 1.70.1": { - "name": "is_terminal_polyfill", - "version": "1.70.1", - "package_url": "https://github.com/polyfill-rs/is_terminal_polyfill", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/is_terminal_polyfill/1.70.1/download", - "sha256": "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" - } - }, - "targets": [ - { - "Library": { - "crate_name": "is_terminal_polyfill", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "is_terminal_polyfill", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.70.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "itoa 1.0.15": { - "name": "itoa", - "version": "1.0.15", - "package_url": "https://github.com/dtolnay/itoa", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.15/download", - "sha256": "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "itoa", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "itoa", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.15" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "jiff 0.2.15": { - "name": "jiff", - "version": "0.2.15", - "package_url": "https://github.com/BurntSushi/jiff", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/jiff/0.2.15/download", - "sha256": "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" - } - }, - "targets": [ - { - "Library": { - "crate_name": "jiff", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "jiff", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(not(target_has_atomic = \"ptr\"))": [ - { - "id": "portable-atomic 1.11.1", - "target": "portable_atomic" - }, - { - "id": "portable-atomic-util 0.2.4", - "target": "portable_atomic_util" - } - ] - } - }, - "edition": "2021", - "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "jiff-static 0.2.15", - "target": "jiff_static" - } - ] - } - }, - "version": "0.2.15" - }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "jiff-static 0.2.15": { - "name": "jiff-static", - "version": "0.2.15", - "package_url": "https://github.com/BurntSushi/jiff", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/jiff-static/0.2.15/download", - "sha256": "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "jiff_static", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "jiff_static", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.15" - }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "jobserver 0.1.34": { - "name": "jobserver", - "version": "0.1.34", - "package_url": "https://github.com/rust-lang/jobserver-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/jobserver/0.1.34/download", - "sha256": "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" - } - }, - "targets": [ - { - "Library": { - "crate_name": "jobserver", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "jobserver", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ] - } - }, - "edition": "2021", - "version": "0.1.34" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "js-sys 0.3.81": { - "name": "js-sys", - "version": "0.3.81", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.81/download", - "sha256": "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" - } - }, - "targets": [ - { - "Library": { - "crate_name": "js_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "js_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "once_cell 1.21.3", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.3.81" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "libbz2-rs-sys 0.2.2": { - "name": "libbz2-rs-sys", - "version": "0.2.2", - "package_url": "https://github.com/trifectatechfoundation/libbzip2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libbz2-rs-sys/0.2.2/download", - "sha256": "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libbz2_rs_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libbz2_rs_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "rust-allocator" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.2" - }, - "license": "bzip2-1.0.6", - "license_ids": [ - "bzip2-1.0.6" - ], - "license_file": "LICENSE" - }, - "libc 0.2.176": { - "name": "libc", - "version": "0.2.176", - "package_url": "https://github.com/rust-lang/libc", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libc/0.2.176/download", - "sha256": "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.176", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.176" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "libredox 0.1.10": { - "name": "libredox", - "version": "0.1.10", - "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libredox/0.1.10/download", - "sha256": "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libredox", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libredox", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.9.4", - "target": "bitflags" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "redox_syscall 0.5.17", - "target": "syscall" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.10" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "libz-rs-sys 0.5.2": { - "name": "libz-rs-sys", - "version": "0.5.2", - "package_url": "https://github.com/trifectatechfoundation/zlib-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libz-rs-sys/0.5.2/download", - "sha256": "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libz_rs_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libz_rs_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "rust-allocator", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zlib-rs 0.5.2", - "target": "zlib_rs" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.2" - }, - "license": "Zlib", - "license_ids": [ - "Zlib" - ], - "license_file": "LICENSE" - }, - "linux-raw-sys 0.11.0": { - "name": "linux-raw-sys", - "version": "0.11.0", - "package_url": "https://github.com/sunfishcode/linux-raw-sys", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.11.0/download", - "sha256": "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" - } - }, - "targets": [ - { - "Library": { - "crate_name": "linux_raw_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "linux_raw_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "auxvec", - "elf", - "errno", - "general", - "ioctl", - "no_std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.11.0" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "litemap 0.8.0": { - "name": "litemap", - "version": "0.8.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/litemap/0.8.0/download", - "sha256": "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" - } - }, - "targets": [ - { - "Library": { - "crate_name": "litemap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "litemap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "log 0.4.28": { - "name": "log", - "version": "0.4.28", - "package_url": "https://github.com/rust-lang/log", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/log/0.4.28/download", - "sha256": "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" - } - }, - "targets": [ - { - "Library": { - "crate_name": "log", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "log", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.4.28" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "lru-slab 0.1.2": { - "name": "lru-slab", - "version": "0.1.2", - "package_url": "https://github.com/Ralith/lru-slab", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/lru-slab/0.1.2/download", - "sha256": "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - } - }, - "targets": [ - { - "Library": { - "crate_name": "lru_slab", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "lru_slab", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.1.2" - }, - "license": "MIT OR Apache-2.0 OR Zlib", - "license_ids": [ - "Apache-2.0", - "MIT", - "Zlib" - ], - "license_file": "LICENSE-APACHE" - }, - "lzma-rust 0.1.7": { - "name": "lzma-rust", - "version": "0.1.7", - "package_url": "https://github.com/dyz1990/sevenz-rust/tree/main/lzma-rust", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/lzma-rust/0.1.7/download", - "sha256": "5baab2bbbd7d75a144d671e9ff79270e903957d92fb7386fd39034c709bd2661" - } - }, - "targets": [ - { - "Library": { - "crate_name": "lzma_rust", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "lzma_rust", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "encoder" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "byteorder 1.5.0", - "target": "byteorder" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.7" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null - }, - "lzma-sys 0.1.20": { - "name": "lzma-sys", - "version": "0.1.20", - "package_url": "https://github.com/alexcrichton/xz2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/lzma-sys/0.1.20/download", - "sha256": "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" - } - }, - "targets": [ - { - "Library": { - "crate_name": "lzma_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "lzma_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "static" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "lzma-sys 0.1.20", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.20" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.39", - "target": "cc" - }, - { - "id": "pkg-config 0.3.32", - "target": "pkg_config" - } - ], - "selects": {} - }, - "links": "lzma" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "md-5 0.10.6": { - "name": "md-5", - "version": "0.10.6", - "package_url": "https://github.com/RustCrypto/hashes", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/md-5/0.10.6/download", - "sha256": "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" - } - }, - "targets": [ - { - "Library": { - "crate_name": "md5", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "md5", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "digest 0.10.7", - "target": "digest" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.10.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "memchr 2.7.6": { - "name": "memchr", - "version": "2.7.6", - "package_url": "https://github.com/BurntSushi/memchr", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/memchr/2.7.6/download", - "sha256": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" - } - }, - "targets": [ - { - "Library": { - "crate_name": "memchr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "memchr", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "2.7.6" - }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "miniz_oxide 0.8.9": { - "name": "miniz_oxide", - "version": "0.8.9", - "package_url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/miniz_oxide/0.8.9/download", - "sha256": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" - } - }, - "targets": [ - { - "Library": { - "crate_name": "miniz_oxide", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "miniz_oxide", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "with-alloc" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "adler2 2.0.1", - "target": "adler2" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.9" - }, - "license": "MIT OR Zlib OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT", - "Zlib" - ], - "license_file": "LICENSE" - }, - "mio 1.0.4": { - "name": "mio", - "version": "1.0.4", - "package_url": "https://github.com/tokio-rs/mio", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/mio/1.0.4/download", - "sha256": "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "mio", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "mio", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "net", - "os-ext", - "os-poll" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(target_os = \"hermit\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(target_os = \"wasi\")": [ - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "wasi 0.11.1+wasi-snapshot-preview1", - "target": "wasi" - } - ], - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.59.0", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "1.0.4" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "nt-time 0.8.1": { - "name": "nt-time", - "version": "0.8.1", - "package_url": "https://github.com/sorairolake/nt-time", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/nt-time/0.8.1/download", - "sha256": "2de419e64947cd8830e66beb584acc3fb42ed411d103e3c794dda355d1b374b5" - } - }, - "targets": [ - { - "Library": { - "crate_name": "nt_time", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "nt_time", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "time 0.3.44", - "target": "time" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSES" - }, - "num-conv 0.1.0": { - "name": "num-conv", - "version": "0.1.0", - "package_url": "https://github.com/jhpratt/num-conv", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/num-conv/0.1.0/download", - "sha256": "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "num_conv", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "num_conv", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-Apache" - }, - "num-traits 0.2.19": { - "name": "num-traits", - "version": "0.2.19", - "package_url": "https://github.com/rust-num/num-traits", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/num-traits/0.2.19/download", - "sha256": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" - } - }, - "targets": [ - { - "Library": { - "crate_name": "num_traits", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "num_traits", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "num-traits 0.2.19", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.19" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "autocfg 1.5.0", - "target": "autocfg" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "object 0.37.3": { - "name": "object", - "version": "0.37.3", - "package_url": "https://github.com/gimli-rs/object", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/object/0.37.3/download", - "sha256": "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" - } - }, - "targets": [ - { - "Library": { - "crate_name": "object", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "object", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "archive", - "coff", - "elf", - "macho", - "pe", - "read_core", - "unaligned", - "xcoff" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "object 0.37.3", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.37.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "once_cell 1.21.3": { - "name": "once_cell", - "version": "1.21.3", - "package_url": "https://github.com/matklad/once_cell", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/once_cell/1.21.3/download", - "sha256": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "once_cell", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "once_cell", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "race", - "std" - ], - "selects": { - "aarch64-apple-darwin": [ - "default" - ], - "aarch64-unknown-linux-gnu": [ - "default" - ], - "x86_64-pc-windows-msvc": [ - "default" - ], - "x86_64-unknown-linux-gnu": [ - "default" - ], - "x86_64-unknown-nixos-gnu": [ - "default" - ] - } - }, - "edition": "2021", - "version": "1.21.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "once_cell_polyfill 1.70.1": { - "name": "once_cell_polyfill", - "version": "1.70.1", - "package_url": "https://github.com/polyfill-rs/once_cell_polyfill", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/once_cell_polyfill/1.70.1/download", - "sha256": "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" - } - }, - "targets": [ - { - "Library": { - "crate_name": "once_cell_polyfill", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "once_cell_polyfill", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.70.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "option-ext 0.2.0": { - "name": "option-ext", - "version": "0.2.0", - "package_url": "https://github.com/soc/option-ext.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/option-ext/0.2.0/download", - "sha256": "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "option_ext", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "option_ext", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.2.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE.txt" - }, - "pem 3.0.5": { - "name": "pem", - "version": "3.0.5", - "package_url": "https://github.com/jcreekmore/pem-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/pem/3.0.5/download", - "sha256": "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "pem", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "pem", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "base64 0.22.1", - "target": "base64" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.0.5" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.md" - }, - "percent-encoding 2.3.2": { - "name": "percent-encoding", - "version": "2.3.2", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/percent-encoding/2.3.2/download", - "sha256": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - } - }, - "targets": [ - { - "Library": { - "crate_name": "percent_encoding", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "percent_encoding", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": { - "aarch64-apple-darwin": [ - "default" - ], - "aarch64-unknown-linux-gnu": [ - "default" - ], - "x86_64-pc-windows-msvc": [ - "default" - ], - "x86_64-unknown-linux-gnu": [ - "default" - ], - "x86_64-unknown-nixos-gnu": [ - "default" - ] - } - }, - "edition": "2018", - "version": "2.3.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "pin-project-lite 0.2.16": { - "name": "pin-project-lite", - "version": "0.2.16", - "package_url": "https://github.com/taiki-e/pin-project-lite", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", - "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "pin_project_lite", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "pin_project_lite", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.2.16" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "pin-utils 0.1.0": { - "name": "pin-utils", - "version": "0.1.0", - "package_url": "https://github.com/rust-lang-nursery/pin-utils", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/pin-utils/0.1.0/download", - "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - } - }, - "targets": [ - { - "Library": { - "crate_name": "pin_utils", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "pin_utils", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "pkg-config 0.3.32": { - "name": "pkg-config", - "version": "0.3.32", - "package_url": "https://github.com/rust-lang/pkg-config-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.32/download", - "sha256": "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "pkg_config", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "pkg_config", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.3.32" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "portable-atomic 1.11.1": { - "name": "portable-atomic", - "version": "1.11.1", - "package_url": "https://github.com/taiki-e/portable-atomic", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.11.1/download", - "sha256": "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" - } - }, - "targets": [ - { - "Library": { - "crate_name": "portable_atomic", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "portable_atomic", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "portable-atomic 1.11.1", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.11.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "portable-atomic-util 0.2.4": { - "name": "portable-atomic-util", - "version": "0.2.4", - "package_url": "https://github.com/taiki-e/portable-atomic", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/portable-atomic-util/0.2.4/download", - "sha256": "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" - } - }, - "targets": [ - { - "Library": { - "crate_name": "portable_atomic_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "portable_atomic_util", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "portable-atomic 1.11.1", - "target": "portable_atomic" - }, - { - "id": "portable-atomic-util 0.2.4", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "potential_utf 0.1.3": { - "name": "potential_utf", - "version": "0.1.3", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/potential_utf/0.1.3/download", - "sha256": "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "potential_utf", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "potential_utf", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "zerovec" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.3" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "powerfmt 0.2.0": { - "name": "powerfmt", - "version": "0.2.0", - "package_url": "https://github.com/jhpratt/powerfmt", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/powerfmt/0.2.0/download", - "sha256": "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" - } - }, - "targets": [ - { - "Library": { - "crate_name": "powerfmt", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "powerfmt", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.2.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-Apache" - }, - "ppv-lite86 0.2.21": { - "name": "ppv-lite86", - "version": "0.2.21", - "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.21/download", - "sha256": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ppv_lite86", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ppv_lite86", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "simd", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zerocopy 0.8.27", - "target": "zerocopy" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.21" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "predicates 3.1.3": { - "name": "predicates", - "version": "3.1.3", - "package_url": "https://github.com/assert-rs/predicates-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.3/download", - "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" - } - }, - "targets": [ - { - "Library": { - "crate_name": "predicates", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "predicates", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "diff" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anstyle 1.0.13", - "target": "anstyle" - }, - { - "id": "difflib 0.4.0", - "target": "difflib" - }, - { - "id": "predicates-core 1.0.9", - "target": "predicates_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.1.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "predicates-core 1.0.9": { - "name": "predicates-core", - "version": "1.0.9", - "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", - "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" - } - }, - "targets": [ - { - "Library": { - "crate_name": "predicates_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "predicates_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "1.0.9" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "predicates-tree 1.0.12": { - "name": "predicates-tree", - "version": "1.0.12", - "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", - "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "predicates_tree", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "predicates_tree", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "predicates-core 1.0.9", - "target": "predicates_core" - }, - { - "id": "termtree 0.5.1", - "target": "termtree" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.12" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "proc-macro2 1.0.101": { - "name": "proc-macro2", - "version": "1.0.101", - "package_url": "https://github.com/dtolnay/proc-macro2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.101/download", - "sha256": "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" - } - }, - "targets": [ - { - "Library": { - "crate_name": "proc_macro2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "proc_macro2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.19", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.101" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "quinn 0.11.9": { - "name": "quinn", - "version": "0.11.9", - "package_url": "https://github.com/quinn-rs/quinn", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/quinn/0.11.9/download", - "sha256": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" - } - }, - "targets": [ - { - "Library": { - "crate_name": "quinn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "quinn", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "quinn 0.11.9", - "target": "build_script_build" - }, - { - "id": "quinn-proto 0.11.13", - "target": "quinn_proto", - "alias": "proto" - }, - { - "id": "quinn-udp 0.5.14", - "target": "quinn_udp", - "alias": "udp" - }, - { - "id": "rustc-hash 2.1.1", - "target": "rustc_hash" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" - } - ], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ], - "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ] - } - }, - "edition": "2021", - "version": "0.11.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg_aliases 0.2.1", - "target": "cfg_aliases" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "quinn-proto 0.11.13": { - "name": "quinn-proto", - "version": "0.11.13", - "package_url": "https://github.com/quinn-rs/quinn", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.13/download", - "sha256": "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" - } - }, - "targets": [ - { - "Library": { - "crate_name": "quinn_proto", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "quinn_proto", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "lru-slab 0.1.2", - "target": "lru_slab" - }, - { - "id": "rand 0.9.2", - "target": "rand" - }, - { - "id": "rustc-hash 2.1.1", - "target": "rustc_hash" - }, - { - "id": "slab 0.4.11", - "target": "slab" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - }, - { - "id": "tinyvec 1.10.0", - "target": "tinyvec" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" - } - ], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - }, - { - "id": "ring 0.17.14", - "target": "ring" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } - }, - "edition": "2021", - "version": "0.11.13" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "quinn-udp 0.5.14": { - "name": "quinn-udp", - "version": "0.5.14", - "package_url": "https://github.com/quinn-rs/quinn", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/quinn-udp/0.5.14/download", - "sha256": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "quinn_udp", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "quinn_udp", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "quinn-udp 0.5.14", - "target": "build_script_build" - } - ], - "selects": { - "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ], - "cfg(windows)": [ - { - "id": "once_cell 1.21.3", - "target": "once_cell" - }, - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "0.5.14" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg_aliases 0.2.1", - "target": "cfg_aliases" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "quote 1.0.41": { - "name": "quote", - "version": "1.0.41", - "package_url": "https://github.com/dtolnay/quote", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/quote/1.0.41/download", - "sha256": "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "quote", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "quote", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.41" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "r-efi 5.3.0": { - "name": "r-efi", - "version": "5.3.0", - "package_url": "https://github.com/r-efi/r-efi", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/r-efi/5.3.0/download", - "sha256": "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "r_efi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "r_efi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "5.3.0" - }, - "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", - "license_ids": [ - "Apache-2.0", - "LGPL-2.1", - "MIT" - ], - "license_file": null - }, - "rand 0.8.5": { - "name": "rand", - "version": "0.8.5", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand/0.8.5/download", - "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "std", - "std_rng" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "rand_chacha 0.3.1", - "target": "rand_chacha" - }, - { - "id": "rand_core 0.6.4", - "target": "rand_core" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2018", - "version": "0.8.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rand 0.9.2": { - "name": "rand", - "version": "0.9.2", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand/0.9.2/download", - "sha256": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "rand_core 0.9.3", - "target": "rand_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.9.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rand_chacha 0.3.1": { - "name": "rand_chacha", - "version": "0.3.1", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand_chacha/0.3.1/download", - "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand_chacha", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand_chacha", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "ppv-lite86 0.2.21", - "target": "ppv_lite86" - }, - { - "id": "rand_core 0.6.4", - "target": "rand_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rand_chacha 0.9.0": { - "name": "rand_chacha", - "version": "0.9.0", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand_chacha/0.9.0/download", - "sha256": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand_chacha", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand_chacha", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "ppv-lite86 0.2.21", - "target": "ppv_lite86" - }, - { - "id": "rand_core 0.9.3", - "target": "rand_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.9.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rand_core 0.6.4": { - "name": "rand_core", - "version": "0.6.4", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand_core/0.6.4/download", - "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "getrandom", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "getrandom 0.2.16", - "target": "getrandom" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rand_core 0.9.3": { - "name": "rand_core", - "version": "0.9.3", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand_core/0.9.3/download", - "sha256": "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rand_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.9.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "redox_syscall 0.5.17": { - "name": "redox_syscall", - "version": "0.5.17", - "package_url": "https://gitlab.redox-os.org/redox-os/syscall", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.5.17/download", - "sha256": "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" - } - }, - "targets": [ - { - "Library": { - "crate_name": "syscall", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "syscall", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.9.4", - "target": "bitflags" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.17" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "redox_users 0.5.2": { - "name": "redox_users", - "version": "0.5.2", - "package_url": "https://gitlab.redox-os.org/redox-os/users", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/redox_users/0.5.2/download", - "sha256": "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" - } - }, - "targets": [ - { - "Library": { - "crate_name": "redox_users", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "redox_users", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "getrandom 0.2.16", - "target": "getrandom" - }, - { - "id": "libredox 0.1.10", - "target": "libredox" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.2" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "regex 1.11.3": { - "name": "regex", - "version": "1.11.3", - "package_url": "https://github.com/rust-lang/regex", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/regex/1.11.3/download", - "sha256": "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "regex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "regex", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "perf", - "perf-backtrack", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "perf-onepass", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "aho-corasick 1.1.3", - "target": "aho_corasick" - }, - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "regex-automata 0.4.11", - "target": "regex_automata" - }, - { - "id": "regex-syntax 0.8.6", - "target": "regex_syntax" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.11.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "regex-automata 0.4.11": { - "name": "regex-automata", - "version": "0.4.11", - "package_url": "https://github.com/rust-lang/regex", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.11/download", - "sha256": "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" - } - }, - "targets": [ - { - "Library": { - "crate_name": "regex_automata", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "regex_automata", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "dfa-onepass", - "dfa-search", - "hybrid", - "meta", - "nfa-backtrack", - "nfa-pikevm", - "nfa-thompson", - "perf-inline", - "perf-literal", - "perf-literal-multisubstring", - "perf-literal-substring", - "std", - "syntax", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "unicode-word-boundary" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "aho-corasick 1.1.3", - "target": "aho_corasick" - }, - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "regex-syntax 0.8.6", - "target": "regex_syntax" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.4.11" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "regex-syntax 0.8.6": { - "name": "regex-syntax", - "version": "0.8.6", - "package_url": "https://github.com/rust-lang/regex", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.8.6/download", - "sha256": "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" - } - }, - "targets": [ - { - "Library": { - "crate_name": "regex_syntax", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "regex_syntax", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "relative-path 1.9.3": { - "name": "relative-path", - "version": "1.9.3", - "package_url": "https://github.com/udoprog/relative-path", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/relative-path/1.9.3/download", - "sha256": "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "relative_path", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "relative_path", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.9.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "reqwest 0.12.23": { - "name": "reqwest", - "version": "0.12.23", - "package_url": "https://github.com/seanmonstar/reqwest", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.23/download", - "sha256": "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "reqwest", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "reqwest", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "__rustls", - "__rustls-ring", - "__tls", - "blocking", - "rustls-tls", - "rustls-tls-webpki-roots", - "rustls-tls-webpki-roots-no-provider" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "base64 0.22.1", - "target": "base64" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "serde 1.0.228", - "target": "serde" - }, - { - "id": "serde_urlencoded 0.7.1", - "target": "serde_urlencoded" - }, - { - "id": "sync_wrapper 1.0.2", - "target": "sync_wrapper" - }, - { - "id": "tower-service 0.3.3", - "target": "tower_service" - }, - { - "id": "url 2.5.7", - "target": "url" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "hyper-rustls 0.27.7", - "target": "hyper_rustls" - }, - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "tokio-rustls 0.26.4", - "target": "tokio_rustls" - }, - { - "id": "webpki-roots 1.0.2", - "target": "webpki_roots" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "hyper-rustls 0.27.7", - "target": "hyper_rustls" - }, - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "tokio-rustls 0.26.4", - "target": "tokio_rustls" - }, - { - "id": "webpki-roots 1.0.2", - "target": "webpki_roots" - } - ], - "cfg(not(target_arch = \"wasm32\"))": [ - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "http-body-util 0.1.3", - "target": "http_body_util" - }, - { - "id": "hyper 1.7.0", - "target": "hyper" - }, - { - "id": "hyper-util 0.1.17", - "target": "hyper_util" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "percent-encoding 2.3.2", - "target": "percent_encoding" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "tower 0.5.2", - "target": "tower" - }, - { - "id": "tower-http 0.6.6", - "target": "tower_http" - } - ], - "cfg(target_arch = \"wasm32\")": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "serde_json 1.0.145", - "target": "serde_json" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - }, - { - "id": "wasm-bindgen-futures 0.4.54", - "target": "wasm_bindgen_futures" - }, - { - "id": "web-sys 0.3.81", - "target": "web_sys" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "hyper-rustls 0.27.7", - "target": "hyper_rustls" - }, - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "tokio-rustls 0.26.4", - "target": "tokio_rustls" - }, - { - "id": "webpki-roots 1.0.2", - "target": "webpki_roots" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "hyper-rustls 0.27.7", - "target": "hyper_rustls" - }, - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "tokio-rustls 0.26.4", - "target": "tokio_rustls" - }, - { - "id": "webpki-roots 1.0.2", - "target": "webpki_roots" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, - { - "id": "hyper-rustls 0.27.7", - "target": "hyper_rustls" - }, - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "tokio-rustls 0.26.4", - "target": "tokio_rustls" - }, - { - "id": "webpki-roots 1.0.2", - "target": "webpki_roots" - } - ] - } - }, - "edition": "2021", - "version": "0.12.23" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "ring 0.17.14": { - "name": "ring", - "version": "0.17.14", - "package_url": "https://github.com/briansmith/ring", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/ring/0.17.14/download", - "sha256": "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ring", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ring", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "dev_urandom_fallback" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "getrandom 0.2.16", - "target": "getrandom" - }, - { - "id": "ring 0.17.14", - "target": "build_script_build" - }, - { - "id": "untrusted 0.9.0", - "target": "untrusted" - } - ], - "selects": { - "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))": [ - { - "id": "windows-sys 0.52.0", - "target": "windows_sys" - } - ], - "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2021", - "version": "0.17.14" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.39", - "target": "cc" - } - ], - "selects": {} - }, - "links": "ring_core_0_17_14_" - }, - "license": "Apache-2.0 AND ISC", - "license_ids": [ - "Apache-2.0", - "ISC" - ], - "license_file": "LICENSE" - }, - "rstest 0.26.1": { - "name": "rstest", - "version": "0.26.1", - "package_url": "https://github.com/la10736/rstest", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rstest/0.26.1/download", - "sha256": "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rstest", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rstest", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "rstest_macros 0.26.1", - "target": "rstest_macros" - } - ], - "selects": {} - }, - "version": "0.26.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rstest_macros 0.26.1": { - "name": "rstest_macros", - "version": "0.26.1", - "package_url": "https://github.com/la10736/rstest", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rstest_macros/0.26.1/download", - "sha256": "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "rstest_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rstest_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "glob 0.3.3", - "target": "glob" - }, - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "regex 1.11.3", - "target": "regex" - }, - { - "id": "relative-path 1.9.3", - "target": "relative_path" - }, - { - "id": "rstest_macros 0.26.1", - "target": "build_script_build" - }, - { - "id": "syn 2.0.106", - "target": "syn" - }, - { - "id": "unicode-ident 1.0.19", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.26.1" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "rustc_version 0.4.1", - "target": "rustc_version" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustc-demangle 0.1.26": { - "name": "rustc-demangle", - "version": "0.1.26", - "package_url": "https://github.com/rust-lang/rustc-demangle", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.26/download", - "sha256": "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustc_demangle", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustc_demangle", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.26" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustc-hash 2.1.1": { - "name": "rustc-hash", - "version": "2.1.1", - "package_url": "https://github.com/rust-lang/rustc-hash", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustc-hash/2.1.1/download", - "sha256": "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustc_hash", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustc_hash", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "2.1.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustc_version 0.4.1": { - "name": "rustc_version", - "version": "0.4.1", - "package_url": "https://github.com/djc/rustc-version-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustc_version/0.4.1/download", - "sha256": "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustc_version", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustc_version", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "semver 1.0.27", - "target": "semver" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustix 1.1.2": { - "name": "rustix", - "version": "1.1.2", - "package_url": "https://github.com/bytecodealliance/rustix", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustix/1.1.2/download", - "sha256": "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustix", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustix", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "fs", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bitflags 2.9.4", - "target": "bitflags" - }, - { - "id": "rustix 1.1.2", - "target": "build_script_build" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "errno 0.3.14", - "target": "errno", - "alias": "libc_errno" - }, - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(all(any(target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ - { - "id": "linux-raw-sys 0.11.0", - "target": "linux_raw_sys" - } - ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ - { - "id": "linux-raw-sys 0.11.0", - "target": "linux_raw_sys" - } - ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ - { - "id": "errno 0.3.14", - "target": "errno", - "alias": "libc_errno" - }, - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "errno 0.3.14", - "target": "errno", - "alias": "libc_errno" - }, - { - "id": "windows-sys 0.61.1", - "target": "windows_sys" - } - ], - "wasm32-wasip1": [ - { - "id": "errno 0.3.14", - "target": "errno", - "alias": "libc_errno" - }, - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2021", - "version": "1.1.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustls 0.23.32": { - "name": "rustls", - "version": "0.23.32", - "package_url": "https://github.com/rustls/rustls", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.32/download", - "sha256": "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustls", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "ring", - "std", - "tls12" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "once_cell 1.21.3", - "target": "once_cell" - }, - { - "id": "ring 0.17.14", - "target": "ring" - }, - { - "id": "rustls 0.23.32", - "target": "build_script_build" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types", - "alias": "pki_types" - }, - { - "id": "rustls-webpki 0.103.6", - "target": "webpki" - }, - { - "id": "subtle 2.6.1", - "target": "subtle" - }, - { - "id": "zeroize 1.8.2", - "target": "zeroize" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.23.32" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "link_deps": { - "common": [ - { - "id": "ring 0.17.14", - "target": "ring" - } - ], - "selects": {} - } - }, - "license": "Apache-2.0 OR ISC OR MIT", - "license_ids": [ - "Apache-2.0", - "ISC", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustls-pki-types 1.12.0": { - "name": "rustls-pki-types", - "version": "1.12.0", - "package_url": "https://github.com/rustls/pki-types", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.12.0/download", - "sha256": "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustls_pki_types", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustls_pki_types", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zeroize 1.8.2", - "target": "zeroize" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.12.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rustls-webpki 0.103.6": { - "name": "rustls-webpki", - "version": "0.103.6", - "package_url": "https://github.com/rustls/webpki", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustls-webpki/0.103.6/download", - "sha256": "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "webpki", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "webpki", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "ring", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "ring 0.17.14", - "target": "ring" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types", - "alias": "pki_types" - }, - { - "id": "untrusted 0.9.0", - "target": "untrusted" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.103.6" - }, - "license": "ISC", - "license_ids": [ - "ISC" - ], - "license_file": "LICENSE" - }, - "rustversion 1.0.22": { - "name": "rustversion", - "version": "1.0.22", - "package_url": "https://github.com/dtolnay/rustversion", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustversion/1.0.22/download", - "sha256": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "rustversion", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build/build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustversion", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "rustversion 1.0.22", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.22" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "ryu 1.0.20": { - "name": "ryu", - "version": "1.0.20", - "package_url": "https://github.com/dtolnay/ryu", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.20/download", - "sha256": "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ryu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ryu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.20" - }, - "license": "Apache-2.0 OR BSL-1.0", - "license_ids": [ - "Apache-2.0", - "BSL-1.0" - ], - "license_file": "LICENSE-APACHE" - }, - "same-file 1.0.6": { - "name": "same-file", - "version": "1.0.6", - "package_url": "https://github.com/BurntSushi/same-file", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/same-file/1.0.6/download", - "sha256": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" - } - }, - "targets": [ - { - "Library": { - "crate_name": "same_file", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "same_file", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(windows)": [ - { - "id": "winapi-util 0.1.11", - "target": "winapi_util" - } - ] - } - }, - "edition": "2018", - "version": "1.0.6" - }, - "license": "Unlicense/MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "scroll 0.12.0": { - "name": "scroll", - "version": "0.12.0", - "package_url": "https://github.com/m4b/scroll", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/scroll/0.12.0/download", - "sha256": "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "scroll", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "scroll", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "derive", - "std" - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "scroll_derive 0.12.1", - "target": "scroll_derive" - } - ], - "selects": {} - }, - "version": "0.12.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "scroll_derive 0.12.1": { - "name": "scroll_derive", - "version": "0.12.1", - "package_url": "https://github.com/m4b/scroll", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/scroll_derive/0.12.1/download", - "sha256": "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "scroll_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "scroll_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.12.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "selenium-manager 0.4.44-nightly": { - "name": "selenium-manager", - "version": "0.4.44-nightly", - "package_url": "https://github.com/SeleniumHQ/selenium", - "repository": null, - "targets": [ - { - "Library": { - "crate_name": "selenium_manager", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "selenium_manager", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "anyhow 1.0.100", - "target": "anyhow" - }, - { - "id": "apple-flat-package 0.20.0", - "target": "apple_flat_package" - }, - { - "id": "bzip2 0.6.0", - "target": "bzip2" - }, - { - "id": "clap 4.5.48", - "target": "clap" - }, - { - "id": "debpkg 0.6.0", - "target": "debpkg" - }, - { - "id": "directories 6.0.0", - "target": "directories" - }, - { - "id": "env_logger 0.11.8", - "target": "env_logger" - }, - { - "id": "exitcode 1.1.2", - "target": "exitcode" - }, - { - "id": "flate2 1.1.2", - "target": "flate2" - }, - { - "id": "fs2 0.4.3", - "target": "fs2" - }, - { - "id": "fs_extra 1.3.0", - "target": "fs_extra" - }, - { - "id": "infer 0.19.0", - "target": "infer" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "regex 1.11.3", - "target": "regex" - }, - { - "id": "reqwest 0.12.23", - "target": "reqwest" - }, - { - "id": "serde 1.0.228", - "target": "serde" - }, - { - "id": "serde_json 1.0.145", - "target": "serde_json" - }, - { - "id": "sevenz-rust 0.6.1", - "target": "sevenz_rust" - }, - { - "id": "tar 0.4.44", - "target": "tar" - }, - { - "id": "tempfile 3.23.0", - "target": "tempfile" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "toml 0.9.7", - "target": "toml" - }, - { - "id": "walkdir 2.5.0", - "target": "walkdir" - }, - { - "id": "which 8.0.0", - "target": "which" - }, - { - "id": "xz2 0.1.7", - "target": "xz2" - }, - { - "id": "zip 5.1.1", - "target": "zip" - } - ], - "selects": { - "cfg(windows)": [ - { - "id": "winapi 0.3.9", - "target": "winapi" - } - ] - } - }, - "deps_dev": { - "common": [ - { - "id": "assert_cmd 2.0.17", - "target": "assert_cmd" - }, - { - "id": "is_executable 1.0.5", - "target": "is_executable" - }, - { - "id": "rstest 0.26.1", - "target": "rstest" - } - ], - "selects": {} - }, - "edition": "2024", - "version": "0.4.44-nightly" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null - }, - "semver 1.0.27": { - "name": "semver", - "version": "1.0.27", - "package_url": "https://github.com/dtolnay/semver", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/semver/1.0.27/download", - "sha256": "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "semver", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "semver", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.0.27" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "serde 1.0.228": { - "name": "serde", - "version": "1.0.228", - "package_url": "https://github.com/serde-rs/serde", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde/1.0.228/download", - "sha256": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "derive", - "serde_derive", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde 1.0.228", - "target": "build_script_build" - }, - { - "id": "serde_core 1.0.228", - "target": "serde_core" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "serde_derive 1.0.228", - "target": "serde_derive" - } - ], - "selects": {} - }, - "version": "1.0.228" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "serde-xml-rs 0.6.0": { - "name": "serde-xml-rs", - "version": "0.6.0", - "package_url": "https://github.com/RReverser/serde-xml-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde-xml-rs/0.6.0/download", - "sha256": "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde_xml_rs", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_xml_rs", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "serde 1.0.228", - "target": "serde" - }, - { - "id": "thiserror 1.0.69", - "target": "thiserror" - }, - { - "id": "xml-rs 0.8.27", - "target": "xml" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "serde_core 1.0.228": { - "name": "serde_core", - "version": "1.0.228", - "package_url": "https://github.com/serde-rs/serde", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde_core/1.0.228/download", - "sha256": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "result", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde_core 1.0.228", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "serde_derive 1.0.228", - "target": "serde_derive" - } - ] - } - }, - "version": "1.0.228" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "serde_derive 1.0.228": { - "name": "serde_derive", - "version": "1.0.228", - "package_url": "https://github.com/serde-rs/serde", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.228/download", - "sha256": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "serde_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.228" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "serde_json 1.0.145": { - "name": "serde_json", - "version": "1.0.145", - "package_url": "https://github.com/serde-rs/json", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.145/download", - "sha256": "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde_json", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_json", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "itoa 1.0.15", - "target": "itoa" - }, - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "ryu 1.0.20", - "target": "ryu" - }, - { - "id": "serde_core 1.0.228", - "target": "serde_core" - }, - { - "id": "serde_json 1.0.145", - "target": "build_script_build" - } - ], - "selects": { - "cfg(any())": [ - { - "id": "serde 1.0.228", - "target": "serde" - } - ] - } - }, - "edition": "2021", - "version": "1.0.145" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "serde_spanned 1.0.2": { - "name": "serde_spanned", - "version": "1.0.2", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde_spanned/1.0.2/download", - "sha256": "5417783452c2be558477e104686f7de5dae53dba813c28435e0e70f82d9b04ee" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde_spanned", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_spanned", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "serde", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde_core 1.0.228", - "target": "serde_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "serde_urlencoded 0.7.1": { - "name": "serde_urlencoded", - "version": "0.7.1", - "package_url": "https://github.com/nox/serde_urlencoded", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/serde_urlencoded/0.7.1/download", - "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "serde_urlencoded", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "serde_urlencoded", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "form_urlencoded 1.2.2", - "target": "form_urlencoded" - }, - { - "id": "itoa 1.0.15", - "target": "itoa" - }, - { - "id": "ryu 1.0.20", - "target": "ryu" - }, - { - "id": "serde 1.0.228", - "target": "serde" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.7.1" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "sevenz-rust 0.6.1": { - "name": "sevenz-rust", - "version": "0.6.1", - "package_url": "https://github.com/dyz1990/sevenz-rust", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/sevenz-rust/0.6.1/download", - "sha256": "26482cf1ecce4540dc782fc70019eba89ffc4d87b3717eb5ec524b5db6fdefef" - } - }, - "targets": [ - { - "Library": { - "crate_name": "sevenz_rust", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "sevenz_rust", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "compress", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bit-set 0.6.0", - "target": "bit_set" - }, - { - "id": "byteorder 1.5.0", - "target": "byteorder" - }, - { - "id": "crc 3.3.0", - "target": "crc" - }, - { - "id": "filetime_creation 0.2.0", - "target": "filetime_creation" - }, - { - "id": "lzma-rust 0.1.7", - "target": "lzma_rust" - }, - { - "id": "nt-time 0.8.1", - "target": "nt_time" - }, - { - "id": "sha2 0.10.9", - "target": "sha2" - } - ], - "selects": { - "cfg(target_arch = \"wasm32\")": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ] - } - }, - "edition": "2021", - "version": "0.6.1" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": "LICENSE" - }, - "sha1 0.10.6": { - "name": "sha1", - "version": "0.10.6", - "package_url": "https://github.com/RustCrypto/hashes", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/sha1/0.10.6/download", - "sha256": "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" - } - }, - "targets": [ - { - "Library": { - "crate_name": "sha1", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "sha1", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "digest 0.10.7", - "target": "digest" - } - ], - "selects": { - "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ - { - "id": "cpufeatures 0.2.17", - "target": "cpufeatures" - } - ] - } - }, - "edition": "2018", - "version": "0.10.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "sha2 0.10.9": { - "name": "sha2", - "version": "0.10.9", - "package_url": "https://github.com/RustCrypto/hashes", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/sha2/0.10.9/download", - "sha256": "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" - } - }, - "targets": [ - { - "Library": { - "crate_name": "sha2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "sha2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "digest 0.10.7", - "target": "digest" - } - ], - "selects": { - "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ - { - "id": "cpufeatures 0.2.17", - "target": "cpufeatures" - } - ] - } - }, - "edition": "2018", - "version": "0.10.9" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "shlex 1.3.0": { - "name": "shlex", - "version": "1.3.0", - "package_url": "https://github.com/comex/rust-shlex", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/shlex/1.3.0/download", - "sha256": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - } - }, - "targets": [ - { - "Library": { - "crate_name": "shlex", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "shlex", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.3.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "signature 2.2.0": { - "name": "signature", - "version": "2.2.0", - "package_url": "https://github.com/RustCrypto/traits/tree/master/signature", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/signature/2.2.0/download", - "sha256": "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" - } - }, - "targets": [ - { - "Library": { - "crate_name": "signature", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "signature", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "2.2.0" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "simd-adler32 0.3.7": { - "name": "simd-adler32", - "version": "0.3.7", - "package_url": "https://github.com/mcountryman/simd-adler32", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/simd-adler32/0.3.7/download", - "sha256": "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" - } - }, - "targets": [ - { - "Library": { - "crate_name": "simd_adler32", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "simd_adler32", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.7" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.md" - }, - "simple-file-manifest 0.11.0": { - "name": "simple-file-manifest", - "version": "0.11.0", - "package_url": "https://github.com/indygreg/simple-file-manifest-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/simple-file-manifest/0.11.0/download", - "sha256": "5dd19be0257552dd56d1bb6946f89f193c6e5b9f13cc9327c4bc84a357507c74" - } - }, - "targets": [ - { - "Library": { - "crate_name": "simple_file_manifest", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "simple_file_manifest", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.11.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "slab 0.4.11": { - "name": "slab", - "version": "0.4.11", - "package_url": "https://github.com/tokio-rs/slab", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/slab/0.4.11/download", - "sha256": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" - } - }, - "targets": [ - { - "Library": { - "crate_name": "slab", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "slab", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.4.11" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "smallvec 1.15.1": { - "name": "smallvec", - "version": "1.15.1", - "package_url": "https://github.com/servo/rust-smallvec", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/smallvec/1.15.1/download", - "sha256": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - } - }, - "targets": [ - { - "Library": { - "crate_name": "smallvec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "smallvec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "const_generics" - ], - "selects": { - "aarch64-apple-darwin": [ - "const_new" - ], - "aarch64-unknown-linux-gnu": [ - "const_new" - ], - "x86_64-pc-windows-msvc": [ - "const_new" - ], - "x86_64-unknown-linux-gnu": [ - "const_new" - ], - "x86_64-unknown-nixos-gnu": [ - "const_new" - ] - } - }, - "edition": "2018", - "version": "1.15.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "socket2 0.6.0": { - "name": "socket2", - "version": "0.6.0", - "package_url": "https://github.com/rust-lang/socket2", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/socket2/0.6.0/download", - "sha256": "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" - } - }, - "targets": [ - { - "Library": { - "crate_name": "socket2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "socket2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "all" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.59.0", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "0.6.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "spki 0.7.3": { - "name": "spki", - "version": "0.7.3", - "package_url": "https://github.com/RustCrypto/formats/tree/master/spki", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/spki/0.7.3/download", - "sha256": "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "spki", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "spki", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "der 0.7.10", - "target": "der" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.7.3" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "stable_deref_trait 1.2.0": { - "name": "stable_deref_trait", - "version": "1.2.0", - "package_url": "https://github.com/storyyeller/stable_deref_trait", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/stable_deref_trait/1.2.0/download", - "sha256": "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "stable_deref_trait", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "stable_deref_trait", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, - "edition": "2015", - "version": "1.2.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "strsim 0.11.1": { - "name": "strsim", - "version": "0.11.1", - "package_url": "https://github.com/rapidfuzz/strsim-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/strsim/0.11.1/download", - "sha256": "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "strsim", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "strsim", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.11.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "subtle 2.6.1": { - "name": "subtle", - "version": "2.6.1", - "package_url": "https://github.com/dalek-cryptography/subtle", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/subtle/2.6.1/download", - "sha256": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - } - }, - "targets": [ - { - "Library": { - "crate_name": "subtle", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "subtle", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "2.6.1" - }, - "license": "BSD-3-Clause", - "license_ids": [ - "BSD-3-Clause" - ], - "license_file": "LICENSE" - }, - "syn 2.0.106": { - "name": "syn", - "version": "2.0.106", - "package_url": "https://github.com/dtolnay/syn", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/syn/2.0.106/download", - "sha256": "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "syn", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "syn", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "clone-impls", - "default", - "derive", - "extra-traits", - "fold", - "full", - "parsing", - "printing", - "proc-macro", - "visit", - "visit-mut" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "unicode-ident 1.0.19", - "target": "unicode_ident" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.106" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "sync_wrapper 1.0.2": { - "name": "sync_wrapper", - "version": "1.0.2", - "package_url": "https://github.com/Actyx/sync_wrapper", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/sync_wrapper/1.0.2/download", - "sha256": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" - } - }, - "targets": [ - { - "Library": { - "crate_name": "sync_wrapper", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "sync_wrapper", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "futures", - "futures-core" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.31", - "target": "futures_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.2" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": "LICENSE" - }, - "synstructure 0.13.2": { - "name": "synstructure", - "version": "0.13.2", - "package_url": "https://github.com/mystor/synstructure", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/synstructure/0.13.2/download", - "sha256": "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "synstructure", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "synstructure", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.13.2" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tar 0.4.44": { - "name": "tar", - "version": "0.4.44", - "package_url": "https://github.com/alexcrichton/tar-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tar/0.4.44/download", - "sha256": "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tar", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tar", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "xattr" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "filetime 0.2.26", - "target": "filetime" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "xattr 1.6.1", - "target": "xattr" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "xattr 1.6.1", - "target": "xattr" - } - ], - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "xattr 1.6.1", - "target": "xattr" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "xattr 1.6.1", - "target": "xattr" - } - ] - } - }, - "edition": "2021", - "version": "0.4.44" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "tempfile 3.23.0": { - "name": "tempfile", - "version": "3.23.0", - "package_url": "https://github.com/Stebalien/tempfile", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tempfile/3.23.0/download", - "sha256": "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tempfile", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tempfile", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "getrandom" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "fastrand 2.3.0", - "target": "fastrand" - }, - { - "id": "once_cell 1.21.3", - "target": "once_cell" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "cfg(any(unix, target_os = \"wasi\"))": [ - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.61.1", - "target": "windows_sys" - } - ], - "wasm32-wasip1": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ] - } - }, - "edition": "2021", - "version": "3.23.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "termtree 0.5.1": { - "name": "termtree", - "version": "0.5.1", - "package_url": "https://github.com/rust-cli/termtree", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/termtree/0.5.1/download", - "sha256": "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" - } - }, - "targets": [ - { - "Library": { - "crate_name": "termtree", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "termtree", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.5.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE-MIT" - }, - "thiserror 1.0.69": { - "name": "thiserror", - "version": "1.0.69", - "package_url": "https://github.com/dtolnay/thiserror", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/thiserror/1.0.69/download", - "sha256": "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" - } - }, - "targets": [ - { - "Library": { - "crate_name": "thiserror", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "thiserror", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "thiserror 1.0.69", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "thiserror-impl 1.0.69", - "target": "thiserror_impl" - } - ], - "selects": {} - }, - "version": "1.0.69" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "thiserror 2.0.17": { - "name": "thiserror", - "version": "2.0.17", - "package_url": "https://github.com/dtolnay/thiserror", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.17/download", - "sha256": "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "thiserror", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "thiserror", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "thiserror 2.0.17", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "thiserror-impl 2.0.17", - "target": "thiserror_impl" - } - ], - "selects": {} - }, - "version": "2.0.17" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "thiserror-impl 1.0.69": { - "name": "thiserror-impl", - "version": "1.0.69", - "package_url": "https://github.com/dtolnay/thiserror", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/1.0.69/download", - "sha256": "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "thiserror_impl", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "thiserror_impl", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.69" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "thiserror-impl 2.0.17": { - "name": "thiserror-impl", - "version": "2.0.17", - "package_url": "https://github.com/dtolnay/thiserror", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.17/download", - "sha256": "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "thiserror_impl", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "thiserror_impl", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.0.17" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "time 0.3.44": { - "name": "time", - "version": "0.3.44", - "package_url": "https://github.com/time-rs/time", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/time/0.3.44/download", - "sha256": "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "time", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "time", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "macros", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "deranged 0.5.4", - "target": "deranged" - }, - { - "id": "num-conv 0.1.0", - "target": "num_conv" - }, - { - "id": "powerfmt 0.2.0", - "target": "powerfmt" - }, - { - "id": "time-core 0.1.6", - "target": "time_core" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "time-macros 0.2.24", - "target": "time_macros" - } - ], - "selects": {} - }, - "version": "0.3.44" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-Apache" - }, - "time-core 0.1.6": { - "name": "time-core", - "version": "0.1.6", - "package_url": "https://github.com/time-rs/time", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/time-core/0.1.6/download", - "sha256": "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "time_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "time_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.1.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-Apache" - }, - "time-macros 0.2.24": { - "name": "time-macros", - "version": "0.2.24", - "package_url": "https://github.com/time-rs/time", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.24/download", - "sha256": "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "time_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "time_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "num-conv 0.1.0", - "target": "num_conv" - }, - { - "id": "time-core 0.1.6", - "target": "time_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.24" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-Apache" - }, - "tinystr 0.8.1": { - "name": "tinystr", - "version": "0.8.1", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tinystr/0.8.1/download", - "sha256": "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tinystr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tinystr", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "zerovec" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zerovec 0.11.4", - "target": "zerovec" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "0.8.1" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "tinyvec 1.10.0": { - "name": "tinyvec", - "version": "1.10.0", - "package_url": "https://github.com/Lokathor/tinyvec", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tinyvec/1.10.0/download", - "sha256": "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tinyvec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tinyvec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.10.0" - }, - "license": "Zlib OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT", - "Zlib" - ], - "license_file": "LICENSE-APACHE.md" - }, - "tinyvec_macros 0.1.1": { - "name": "tinyvec_macros", - "version": "0.1.1", - "package_url": "https://github.com/Soveu/tinyvec_macros", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tinyvec_macros/0.1.1/download", - "sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tinyvec_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tinyvec_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.1.1" - }, - "license": "MIT OR Apache-2.0 OR Zlib", - "license_ids": [ - "Apache-2.0", - "MIT", - "Zlib" - ], - "license_file": "LICENSE-APACHE.md" - }, - "tokio 1.47.1": { - "name": "tokio", - "version": "1.47.1", - "package_url": "https://github.com/tokio-rs/tokio", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tokio/1.47.1/download", - "sha256": "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tokio", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tokio", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "libc", - "macros", - "mio", - "net", - "rt", - "rt-multi-thread", - "socket2", - "tokio-macros" - ], - "selects": { - "aarch64-apple-darwin": [ - "bytes", - "default", - "io-util", - "sync", - "time" - ], - "aarch64-unknown-linux-gnu": [ - "bytes", - "default", - "io-util", - "sync", - "time" - ], - "x86_64-pc-windows-msvc": [ - "bytes", - "default", - "io-util", - "sync", - "time", - "windows-sys" - ], - "x86_64-unknown-linux-gnu": [ - "bytes", - "default", - "io-util", - "sync", - "time" - ], - "x86_64-unknown-nixos-gnu": [ - "bytes", - "default", - "io-util", - "sync", - "time" - ] - } - }, - "deps": { - "common": [ - { - "id": "mio 1.0.4", - "target": "mio" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - } - ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ], - "cfg(all(tokio_uring, target_os = \"linux\"))": [ - { - "id": "io-uring 0.7.10", - "target": "io_uring" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "slab 0.4.11", - "target": "slab" - } - ], - "cfg(tokio_taskdump)": [ - { - "id": "backtrace 0.3.76", - "target": "backtrace" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - }, - { - "id": "windows-sys 0.59.0", - "target": "windows_sys" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ] - } - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "tokio-macros 2.5.0", - "target": "tokio_macros" - } - ], - "selects": {} - }, - "version": "1.47.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tokio-macros 2.5.0": { - "name": "tokio-macros", - "version": "2.5.0", - "package_url": "https://github.com/tokio-rs/tokio", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.5.0/download", - "sha256": "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "tokio_macros", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tokio_macros", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "2.5.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tokio-rustls 0.26.4": { - "name": "tokio-rustls", - "version": "0.26.4", - "package_url": "https://github.com/rustls/tokio-rustls", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tokio-rustls/0.26.4/download", - "sha256": "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tokio_rustls", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tokio_rustls", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "ring", - "tls12" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "rustls 0.23.32", - "target": "rustls" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.26.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "toml 0.9.7": { - "name": "toml", - "version": "0.9.7", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml/0.9.7/download", - "sha256": "00e5e5d9bf2475ac9d4f0d9edab68cc573dc2fd644b0dba36b0c30a92dd9eaa0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "display", - "parse", - "serde", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde_core 1.0.228", - "target": "serde_core" - }, - { - "id": "serde_spanned 1.0.2", - "target": "serde_spanned" - }, - { - "id": "toml_datetime 0.7.2", - "target": "toml_datetime" - }, - { - "id": "toml_parser 1.0.3", - "target": "toml_parser" - }, - { - "id": "toml_writer 1.0.3", - "target": "toml_writer" - }, - { - "id": "winnow 0.7.13", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.9.7" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "toml_datetime 0.7.2": { - "name": "toml_datetime", - "version": "0.7.2", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml_datetime/0.7.2/download", - "sha256": "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml_datetime", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml_datetime", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "serde", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde_core 1.0.228", - "target": "serde_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.7.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "toml_parser 1.0.3": { - "name": "toml_parser", - "version": "1.0.3", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml_parser/1.0.3/download", - "sha256": "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml_parser", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml_parser", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "winnow 0.7.13", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "toml_writer 1.0.3": { - "name": "toml_writer", - "version": "1.0.3", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml_writer/1.0.3/download", - "sha256": "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml_writer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml_writer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "tower 0.5.2": { - "name": "tower", - "version": "0.5.2", - "package_url": "https://github.com/tower-rs/tower", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tower/0.5.2/download", - "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tower", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tower", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "__common", - "futures-core", - "futures-util", - "pin-project-lite", - "retry", - "sync_wrapper", - "timeout", - "tokio", - "util" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "sync_wrapper 1.0.2", - "target": "sync_wrapper" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "tower-layer 0.3.3", - "target": "tower_layer" - }, - { - "id": "tower-service 0.3.3", - "target": "tower_service" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.5.2" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tower-http 0.6.6": { - "name": "tower-http", - "version": "0.6.6", - "package_url": "https://github.com/tower-rs/tower-http", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tower-http/0.6.6/download", - "sha256": "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tower_http", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tower_http", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "follow-redirect", - "futures-util", - "iri-string", - "tower" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bitflags 2.9.4", - "target": "bitflags" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "futures-util 0.3.31", - "target": "futures_util" - }, - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "http-body 1.0.1", - "target": "http_body" - }, - { - "id": "iri-string 0.7.8", - "target": "iri_string" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "tower 0.5.2", - "target": "tower" - }, - { - "id": "tower-layer 0.3.3", - "target": "tower_layer" - }, - { - "id": "tower-service 0.3.3", - "target": "tower_service" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.6" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tower-layer 0.3.3": { - "name": "tower-layer", - "version": "0.3.3", - "package_url": "https://github.com/tower-rs/tower", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tower-layer/0.3.3/download", - "sha256": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tower_layer", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tower_layer", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.3.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tower-service 0.3.3": { - "name": "tower-service", - "version": "0.3.3", - "package_url": "https://github.com/tower-rs/tower", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tower-service/0.3.3/download", - "sha256": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tower_service", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tower_service", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.3.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tracing 0.1.41": { - "name": "tracing", - "version": "0.1.41", - "package_url": "https://github.com/tokio-rs/tracing", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tracing/0.1.41/download", - "sha256": "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tracing", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tracing", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "tracing-core 0.1.34", - "target": "tracing_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.41" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "tracing-core 0.1.34": { - "name": "tracing-core", - "version": "0.1.34", - "package_url": "https://github.com/tokio-rs/tracing", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tracing-core/0.1.34/download", - "sha256": "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tracing_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tracing_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "once_cell", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "once_cell 1.21.3", - "target": "once_cell" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.34" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "try-lock 0.2.5": { - "name": "try-lock", - "version": "0.2.5", - "package_url": "https://github.com/seanmonstar/try-lock", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/try-lock/0.2.5/download", - "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "try_lock", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "try_lock", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.2.5" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "typenum 1.18.0": { - "name": "typenum", - "version": "1.18.0", - "package_url": "https://github.com/paholg/typenum", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/typenum/1.18.0/download", - "sha256": "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "typenum", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "typenum", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "typenum 1.18.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.18.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE" - }, - "unicode-ident 1.0.19": { - "name": "unicode-ident", - "version": "1.0.19", - "package_url": "https://github.com/dtolnay/unicode-ident", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.19/download", - "sha256": "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "unicode_ident", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "unicode_ident", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "1.0.19" - }, - "license": "(MIT OR Apache-2.0) AND Unicode-3.0", - "license_ids": [ - "Apache-2.0", - "MIT", - "Unicode-3.0" - ], - "license_file": "LICENSE-APACHE" - }, - "untrusted 0.9.0": { - "name": "untrusted", - "version": "0.9.0", - "package_url": "https://github.com/briansmith/untrusted", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/untrusted/0.9.0/download", - "sha256": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "untrusted", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "untrusted", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.9.0" - }, - "license": "ISC", - "license_ids": [ - "ISC" - ], - "license_file": "LICENSE.txt" - }, - "url 2.5.7": { - "name": "url", - "version": "2.5.7", - "package_url": "https://github.com/servo/rust-url", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/url/2.5.7/download", - "sha256": "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "url", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "url", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "serde", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "form_urlencoded 1.2.2", - "target": "form_urlencoded" - }, - { - "id": "idna 1.1.0", - "target": "idna" - }, - { - "id": "percent-encoding 2.3.2", - "target": "percent_encoding" - }, - { - "id": "serde 1.0.228", - "target": "serde" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.5.7" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "utf8_iter 1.0.4": { - "name": "utf8_iter", - "version": "1.0.4", - "package_url": "https://github.com/hsivonen/utf8_iter", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/utf8_iter/1.0.4/download", - "sha256": "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - } - }, - "targets": [ - { - "Library": { - "crate_name": "utf8_iter", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "utf8_iter", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "1.0.4" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "utf8parse 0.2.2": { - "name": "utf8parse", - "version": "0.2.2", - "package_url": "https://github.com/alacritty/vte", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/utf8parse/0.2.2/download", - "sha256": "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - } - }, - "targets": [ - { - "Library": { - "crate_name": "utf8parse", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "utf8parse", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.2" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "uuid 1.18.1": { - "name": "uuid", - "version": "1.18.1", - "package_url": "https://github.com/uuid-rs/uuid", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/uuid/1.18.1/download", - "sha256": "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "uuid", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "uuid", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "1.18.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "version_check 0.9.5": { - "name": "version_check", - "version": "0.9.5", - "package_url": "https://github.com/SergioBenitez/version_check", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/version_check/0.9.5/download", - "sha256": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "version_check", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "version_check", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.9.5" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wait-timeout 0.2.1": { - "name": "wait-timeout", - "version": "0.2.1", - "package_url": "https://github.com/alexcrichton/wait-timeout", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wait-timeout/0.2.1/download", - "sha256": "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wait_timeout", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wait_timeout", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(unix)": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2015", - "version": "0.2.1" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "walkdir 2.5.0": { - "name": "walkdir", - "version": "2.5.0", - "package_url": "https://github.com/BurntSushi/walkdir", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/walkdir/2.5.0/download", - "sha256": "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "walkdir", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "walkdir", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "same-file 1.0.6", - "target": "same_file" - } - ], - "selects": { - "cfg(windows)": [ - { - "id": "winapi-util 0.1.11", - "target": "winapi_util" - } - ] - } - }, - "edition": "2018", - "version": "2.5.0" - }, - "license": "Unlicense/MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "want 0.3.1": { - "name": "want", - "version": "0.3.1", - "package_url": "https://github.com/seanmonstar/want", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/want/0.3.1/download", - "sha256": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" - } - }, - "targets": [ - { - "Library": { - "crate_name": "want", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "want", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "try-lock 0.2.5", - "target": "try_lock" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.3.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "wasi 0.11.1+wasi-snapshot-preview1": { - "name": "wasi", - "version": "0.11.1+wasi-snapshot-preview1", - "package_url": "https://github.com/bytecodealliance/wasi", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download", - "sha256": "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "edition": "2018", - "version": "0.11.1+wasi-snapshot-preview1" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasi 0.14.7+wasi-0.2.4": { - "name": "wasi", - "version": "0.14.7+wasi-0.2.4", - "package_url": "https://github.com/bytecodealliance/wasi-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasi/0.14.7+wasi-0.2.4/download", - "sha256": "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "wasip2 1.0.1+wasi-0.2.4", - "target": "wasip2" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.14.7+wasi-0.2.4" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasip2 1.0.1+wasi-0.2.4": { - "name": "wasip2", - "version": "1.0.1+wasi-0.2.4", - "package_url": "https://github.com/bytecodealliance/wasi-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasip2/1.0.1+wasi-0.2.4/download", - "sha256": "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasip2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasip2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "wit-bindgen 0.46.0", - "target": "wit_bindgen" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.1+wasi-0.2.4" - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "wasm-bindgen 0.2.104": { - "name": "wasm-bindgen", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.104/download", - "sha256": "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_bindgen", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "once_cell 1.21.3", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "build_script_build" - }, - { - "id": "wasm-bindgen-shared 0.2.104", - "target": "wasm_bindgen_shared" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "wasm-bindgen-macro 0.2.104", - "target": "wasm_bindgen_macro" - } - ], - "selects": {} - }, - "version": "0.2.104" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "link_deps": { - "common": [ - { - "id": "wasm-bindgen-shared 0.2.104", - "target": "wasm_bindgen_shared" - } - ], - "selects": {} - }, - "proc_macro_deps": { - "common": [ - { - "id": "rustversion 1.0.22", - "target": "rustversion", - "alias": "rustversion_compat" - } - ], - "selects": {} - } - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-backend 0.2.104": { - "name": "wasm-bindgen-backend", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/backend", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.104/download", - "sha256": "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_bindgen_backend", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen_backend", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bumpalo 3.19.0", - "target": "bumpalo" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - }, - { - "id": "wasm-bindgen-shared 0.2.104", - "target": "wasm_bindgen_shared" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.104" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-futures 0.4.54": { - "name": "wasm-bindgen-futures", - "version": "0.4.54", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.54/download", - "sha256": "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_bindgen_futures", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen_futures", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "once_cell 1.21.3", - "target": "once_cell" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ], - "selects": { - "cfg(target_feature = \"atomics\")": [ - { - "id": "web-sys 0.3.81", - "target": "web_sys" - } - ] - } - }, - "edition": "2021", - "version": "0.4.54" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-macro 0.2.104": { - "name": "wasm-bindgen-macro", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.104/download", - "sha256": "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "wasm_bindgen_macro", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen_macro", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "wasm-bindgen-macro-support 0.2.104", - "target": "wasm_bindgen_macro_support" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.104" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-macro-support 0.2.104": { - "name": "wasm-bindgen-macro-support", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.104/download", - "sha256": "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_bindgen_macro_support", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen_macro_support", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - }, - { - "id": "wasm-bindgen-backend 0.2.104", - "target": "wasm_bindgen_backend" - }, - { - "id": "wasm-bindgen-shared 0.2.104", - "target": "wasm_bindgen_shared" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.104" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "wasm-bindgen-shared 0.2.104": { - "name": "wasm-bindgen-shared", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.104/download", - "sha256": "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_bindgen_shared", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_bindgen_shared", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "unicode-ident 1.0.19", - "target": "unicode_ident" - }, - { - "id": "wasm-bindgen-shared 0.2.104", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.104" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "links": "wasm_bindgen" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "web-sys 0.3.81": { - "name": "web-sys", - "version": "0.3.81", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.81/download", - "sha256": "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" - } - }, - "targets": [ - { - "Library": { - "crate_name": "web_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "web_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "AbortController", - "AbortSignal", - "Blob", - "BlobPropertyBag", - "EventTarget", - "File", - "FormData", - "Headers", - "ReadableStream", - "Request", - "RequestCache", - "RequestCredentials", - "RequestInit", - "RequestMode", - "Response", - "ServiceWorkerGlobalScope", - "Window", - "WorkerGlobalScope", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.3.81" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "web-time 1.1.0": { - "name": "web-time", - "version": "1.1.0", - "package_url": "https://github.com/daxpedda/web-time", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/web-time/1.1.0/download", - "sha256": "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "web_time", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "web_time", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ] - } - }, - "edition": "2021", - "version": "1.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "webpki-roots 1.0.2": { - "name": "webpki-roots", - "version": "1.0.2", - "package_url": "https://github.com/rustls/webpki-roots", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/webpki-roots/1.0.2/download", - "sha256": "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "webpki_roots", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "webpki_roots", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types", - "alias": "pki_types" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.2" - }, - "license": "CDLA-Permissive-2.0", - "license_ids": [ - "CDLA-Permissive-2.0" - ], - "license_file": "LICENSE" - }, - "which 8.0.0": { - "name": "which", - "version": "8.0.0", - "package_url": "https://github.com/harryfei/which-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/which/8.0.0/download", - "sha256": "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "which", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "which", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "real-sys" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "wasm32-wasip1": [ - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "winsafe 0.0.19", - "target": "winsafe" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ] - } - }, - "edition": "2021", - "version": "8.0.0" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.txt" - }, - "winapi 0.3.9": { - "name": "winapi", - "version": "0.3.9", - "package_url": "https://github.com/retep998/winapi-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winapi/0.3.9/download", - "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winapi", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winapi", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "fileapi", - "handleapi", - "processthreadsapi", - "std", - "sysinfoapi", - "winbase", - "winerror", - "winnt", - "winver" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "winapi 0.3.9", - "target": "build_script_build" - } - ], - "selects": { - "i686-pc-windows-gnu": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "winapi_i686_pc_windows_gnu" - } - ], - "x86_64-pc-windows-gnu": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "winapi_x86_64_pc_windows_gnu" - } - ] - } - }, - "edition": "2015", - "version": "0.3.9" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "winapi-i686-pc-windows-gnu 0.4.0": { - "name": "winapi-i686-pc-windows-gnu", - "version": "0.4.0", - "package_url": "https://github.com/retep998/winapi-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download", - "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winapi_i686_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winapi_i686_pc_windows_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-i686-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "winapi-util 0.1.11": { - "name": "winapi-util", - "version": "0.1.11", - "package_url": "https://github.com/BurntSushi/winapi-util", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winapi-util/0.1.11/download", - "sha256": "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winapi_util", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winapi_util", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "cfg(windows)": [ - { - "id": "windows-sys 0.61.1", - "target": "windows_sys" - } - ] - } - }, - "edition": "2021", - "version": "0.1.11" - }, - "license": "Unlicense OR MIT", - "license_ids": [ - "MIT", - "Unlicense" - ], - "license_file": "LICENSE-MIT" - }, - "winapi-x86_64-pc-windows-gnu 0.4.0": { - "name": "winapi-x86_64-pc-windows-gnu", - "version": "0.4.0", - "package_url": "https://github.com/retep998/winapi-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download", - "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winapi_x86_64_pc_windows_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winapi_x86_64_pc_windows_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "winapi-x86_64-pc-windows-gnu 0.4.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.4.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, - "windows-core 0.62.1": { - "name": "windows-core", - "version": "0.62.1", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-core/0.62.1/download", - "sha256": "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_core", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - }, - { - "id": "windows-result 0.4.0", - "target": "windows_result" - }, - { - "id": "windows-strings 0.5.0", - "target": "windows_strings" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "windows-implement 0.60.1", - "target": "windows_implement" - }, - { - "id": "windows-interface 0.59.2", - "target": "windows_interface" - } - ], - "selects": {} - }, - "version": "0.62.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-implement 0.60.1": { - "name": "windows-implement", - "version": "0.60.1", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-implement/0.60.1/download", - "sha256": "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "windows_implement", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_implement", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.60.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-interface 0.59.2": { - "name": "windows-interface", - "version": "0.59.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-interface/0.59.2/download", - "sha256": "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "windows_interface", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_interface", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.59.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-link 0.2.0": { - "name": "windows-link", - "version": "0.2.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-link/0.2.0/download", - "sha256": "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_link", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_link", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.2.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-result 0.4.0": { - "name": "windows-result", - "version": "0.4.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-result/0.4.0/download", - "sha256": "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_result", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_result", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.4.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-strings 0.5.0": { - "name": "windows-strings", - "version": "0.5.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-strings/0.5.0/download", - "sha256": "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_strings", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_strings", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.52.0": { - "name": "windows-sys", - "version": "0.52.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.52.0/download", - "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.59.0": { - "name": "windows-sys", - "version": "0.59.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.59.0/download", - "sha256": "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "Wdk", - "Wdk_Foundation", - "Wdk_Storage", - "Wdk_Storage_FileSystem", - "Wdk_System", - "Wdk_System_IO", - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_SystemServices", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.59.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.60.2": { - "name": "windows-sys", - "version": "0.60.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.60.2/download", - "sha256": "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "windows-targets 0.53.4", - "target": "windows_targets" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.60.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-sys 0.61.1": { - "name": "windows-sys", - "version": "0.61.1", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.61.1/download", - "sha256": "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Globalization", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Com", - "Win32_System_Console", - "Win32_System_SystemInformation", - "Win32_UI", - "Win32_UI_Shell", - "default" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.61.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.52.6": { - "name": "windows-targets", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", - "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_targets", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "aarch64-pc-windows-gnullvm": [ - { - "id": "windows_aarch64_gnullvm 0.52.6", - "target": "windows_aarch64_gnullvm" - } - ], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_msvc 0.52.6", - "target": "windows_x86_64_msvc" - } - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_aarch64_msvc 0.52.6", - "target": "windows_aarch64_msvc" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_i686_gnu 0.52.6", - "target": "windows_i686_gnu" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_i686_msvc 0.52.6", - "target": "windows_i686_msvc" - } - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_gnu 0.52.6", - "target": "windows_x86_64_gnu" - } - ], - "i686-pc-windows-gnullvm": [ - { - "id": "windows_i686_gnullvm 0.52.6", - "target": "windows_i686_gnullvm" - } - ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.52.6", - "target": "windows_x86_64_gnullvm" - } - ] - } - }, - "edition": "2021", - "version": "0.52.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-targets 0.53.4": { - "name": "windows-targets", - "version": "0.53.4", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.53.4/download", - "sha256": "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_targets", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_targets", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [], - "selects": { - "aarch64-pc-windows-gnullvm": [ - { - "id": "windows_aarch64_gnullvm 0.53.0", - "target": "windows_aarch64_gnullvm" - } - ], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_msvc 0.53.0", - "target": "windows_x86_64_msvc" - } - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_aarch64_msvc 0.53.0", - "target": "windows_aarch64_msvc" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_i686_gnu 0.53.0", - "target": "windows_i686_gnu" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_i686_msvc 0.53.0", - "target": "windows_i686_msvc" - } - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_gnu 0.53.0", - "target": "windows_x86_64_gnu" - } - ], - "cfg(windows_raw_dylib)": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "i686-pc-windows-gnullvm": [ - { - "id": "windows_i686_gnullvm 0.53.0", - "target": "windows_i686_gnullvm" - } - ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.53.0", - "target": "windows_x86_64_gnullvm" - } - ] - } - }, - "edition": "2021", - "version": "0.53.4" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_gnullvm 0.52.6": { - "name": "windows_aarch64_gnullvm", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download", - "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_gnullvm 0.53.0": { - "name": "windows_aarch64_gnullvm", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.0/download", - "sha256": "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_gnullvm 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.52.6": { - "name": "windows_aarch64_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", - "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_aarch64_msvc 0.53.0": { - "name": "windows_aarch64_msvc", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.53.0/download", - "sha256": "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_aarch64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_aarch64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_aarch64_msvc 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.52.6": { - "name": "windows_i686_gnu", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", - "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnu 0.53.0": { - "name": "windows_i686_gnu", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.53.0/download", - "sha256": "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnu 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnullvm 0.52.6": { - "name": "windows_i686_gnullvm", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", - "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_gnullvm 0.53.0": { - "name": "windows_i686_gnullvm", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.53.0/download", - "sha256": "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_gnullvm 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.52.6": { - "name": "windows_i686_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_i686_msvc 0.53.0": { - "name": "windows_i686_msvc", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.53.0/download", - "sha256": "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_i686_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_i686_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_i686_msvc 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnu 0.52.6": { - "name": "windows_x86_64_gnu", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", - "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnu 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnu 0.53.0": { - "name": "windows_x86_64_gnu", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.53.0/download", - "sha256": "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_gnu", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_gnu", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnu 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnullvm 0.52.6": { - "name": "windows_x86_64_gnullvm", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", - "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnullvm 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_gnullvm 0.53.0": { - "name": "windows_x86_64_gnullvm", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.0/download", - "sha256": "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_gnullvm", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_gnullvm", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_gnullvm 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.52.6": { - "name": "windows_x86_64_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", - "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.52.6", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows_x86_64_msvc 0.53.0": { - "name": "windows_x86_64_msvc", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.53.0/download", - "sha256": "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_x86_64_msvc", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_x86_64_msvc", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows_x86_64_msvc 0.53.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "winnow 0.7.13": { - "name": "winnow", - "version": "0.7.13", - "package_url": "https://github.com/winnow-rs/winnow", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winnow/0.7.13/download", - "sha256": "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winnow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winnow", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.7.13" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE-MIT" - }, - "winsafe 0.0.19": { - "name": "winsafe", - "version": "0.0.19", - "package_url": "https://github.com/rodrigocfd/winsafe", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winsafe/0.0.19/download", - "sha256": "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winsafe", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winsafe", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "kernel" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.0.19" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.md" - }, - "wit-bindgen 0.46.0": { - "name": "wit-bindgen", - "version": "0.46.0", - "package_url": "https://github.com/bytecodealliance/wit-bindgen", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wit-bindgen/0.46.0/download", - "sha256": "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wit_bindgen", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wit_bindgen", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "wit-bindgen 0.46.0", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.46.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "writeable 0.6.1": { - "name": "writeable", - "version": "0.6.1", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/writeable/0.6.1/download", - "sha256": "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" - } - }, - "targets": [ - { - "Library": { - "crate_name": "writeable", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "writeable", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.6.1" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "x509-certificate 0.24.0": { - "name": "x509-certificate", - "version": "0.24.0", - "package_url": "https://github.com/indygreg/cryptography-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/x509-certificate/0.24.0/download", - "sha256": "e57b9f8bcae7c1f36479821ae826d75050c60ce55146fd86d3553ed2573e2762" - } - }, - "targets": [ - { - "Library": { - "crate_name": "x509_certificate", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "x509_certificate", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "test" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bcder 0.7.6", - "target": "bcder" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "chrono 0.4.42", - "target": "chrono" - }, - { - "id": "der 0.7.10", - "target": "der" - }, - { - "id": "hex 0.4.3", - "target": "hex" - }, - { - "id": "pem 3.0.5", - "target": "pem" - }, - { - "id": "ring 0.17.14", - "target": "ring" - }, - { - "id": "signature 2.2.0", - "target": "signature" - }, - { - "id": "spki 0.7.3", - "target": "spki" - }, - { - "id": "thiserror 1.0.69", - "target": "thiserror" - }, - { - "id": "zeroize 1.8.2", - "target": "zeroize" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.24.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE" - }, - "xattr 1.6.1": { - "name": "xattr", - "version": "1.6.1", - "package_url": "https://github.com/Stebalien/xattr", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/xattr/1.6.1/download", - "sha256": "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" - } - }, - "targets": [ - { - "Library": { - "crate_name": "xattr", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "xattr", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "unsupported" - ], - "selects": {} - }, - "deps": { - "common": [], - "selects": { - "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))": [ - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } - }, - "edition": "2021", - "version": "1.6.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "xml-rs 0.8.27": { - "name": "xml-rs", - "version": "0.8.27", - "package_url": "https://github.com/kornelski/xml-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/xml-rs/0.8.27/download", - "sha256": "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "xml", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "xml", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.8.27" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "xz2 0.1.7": { - "name": "xz2", - "version": "0.1.7", - "package_url": "https://github.com/alexcrichton/xz2-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/xz2/0.1.7/download", - "sha256": "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "xz2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "xz2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "static" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "lzma-sys 0.1.20", - "target": "lzma_sys" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.1.7" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "yoke 0.8.0": { - "name": "yoke", - "version": "0.8.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/yoke/0.8.0/download", - "sha256": "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" - } - }, - "targets": [ - { - "Library": { - "crate_name": "yoke", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "yoke", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "derive", - "zerofrom" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "stable_deref_trait 1.2.0", - "target": "stable_deref_trait" - }, - { - "id": "zerofrom 0.1.6", - "target": "zerofrom" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "yoke-derive 0.8.0", - "target": "yoke_derive" - } - ], - "selects": {} - }, - "version": "0.8.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "yoke-derive 0.8.0": { - "name": "yoke-derive", - "version": "0.8.0", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/yoke-derive/0.8.0/download", - "sha256": "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "yoke_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "yoke_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - }, - { - "id": "synstructure 0.13.2", - "target": "synstructure" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.0" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "zerocopy 0.8.27": { - "name": "zerocopy", - "version": "0.8.27", - "package_url": "https://github.com/google/zerocopy", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.8.27/download", - "sha256": "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zerocopy", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerocopy", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "simd" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zerocopy 0.8.27", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [], - "selects": { - "cfg(any())": [ - { - "id": "zerocopy-derive 0.8.27", - "target": "zerocopy_derive" - } - ] - } - }, - "version": "0.8.27" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "BSD-2-Clause", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "zerocopy-derive 0.8.27": { - "name": "zerocopy-derive", - "version": "0.8.27", - "package_url": "https://github.com/google/zerocopy", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.8.27/download", - "sha256": "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "zerocopy_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerocopy_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.27" - }, - "license": "BSD-2-Clause OR Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "BSD-2-Clause", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "zerofrom 0.1.6": { - "name": "zerofrom", - "version": "0.1.6", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerofrom/0.1.6/download", - "sha256": "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zerofrom", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerofrom", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "derive" - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "zerofrom-derive 0.1.6", - "target": "zerofrom_derive" - } - ], - "selects": {} - }, - "version": "0.1.6" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "zerofrom-derive 0.1.6": { - "name": "zerofrom-derive", - "version": "0.1.6", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerofrom-derive/0.1.6/download", - "sha256": "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "zerofrom_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerofrom_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - }, - { - "id": "synstructure 0.13.2", - "target": "synstructure" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.6" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "zeroize 1.8.2": { - "name": "zeroize", - "version": "1.8.2", - "package_url": "https://github.com/RustCrypto/utils", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zeroize/1.8.2/download", - "sha256": "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zeroize", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zeroize", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "default", - "derive", - "zeroize_derive" - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "zeroize_derive 1.4.2", - "target": "zeroize_derive" - } - ], - "selects": {} - }, - "version": "1.8.2" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "zeroize_derive 1.4.2": { - "name": "zeroize_derive", - "version": "1.4.2", - "package_url": "https://github.com/RustCrypto/utils/tree/master/zeroize/derive", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zeroize_derive/1.4.2/download", - "sha256": "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "zeroize_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zeroize_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.4.2" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "zerotrie 0.2.2": { - "name": "zerotrie", - "version": "0.2.2", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerotrie/0.2.2/download", - "sha256": "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zerotrie", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerotrie", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "yoke", - "zerofrom" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "yoke 0.8.0", - "target": "yoke" - }, - { - "id": "zerofrom 0.1.6", - "target": "zerofrom" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "0.2.2" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "zerovec 0.11.4": { - "name": "zerovec", - "version": "0.11.4", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerovec/0.11.4/download", - "sha256": "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zerovec", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerovec", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "alloc", - "derive", - "yoke" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "yoke 0.8.0", - "target": "yoke" - }, - { - "id": "zerofrom 0.1.6", - "target": "zerofrom" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "zerovec-derive 0.11.1", - "target": "zerovec_derive" - } - ], - "selects": {} - }, - "version": "0.11.4" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "zerovec-derive 0.11.1": { - "name": "zerovec-derive", - "version": "0.11.1", - "package_url": "https://github.com/unicode-org/icu4x", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zerovec-derive/0.11.1/download", - "sha256": "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" - } - }, - "targets": [ - { - "ProcMacro": { - "crate_name": "zerovec_derive", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zerovec_derive", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.11.1" - }, - "license": "Unicode-3.0", - "license_ids": [ - "Unicode-3.0" - ], - "license_file": "LICENSE" - }, - "zip 5.1.1": { - "name": "zip", - "version": "5.1.1", - "package_url": "https://github.com/zip-rs/zip2.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zip/5.1.1/download", - "sha256": "2f852905151ac8d4d06fdca66520a661c09730a74c6d4e2b0f27b436b382e532" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zip", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zip", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "_deflate-any", - "deflate", - "deflate-flate2", - "deflate-flate2-zlib-rs", - "deflate-zopfli" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "crc32fast 1.5.0", - "target": "crc32fast" - }, - { - "id": "flate2 1.1.2", - "target": "flate2" - }, - { - "id": "indexmap 2.11.4", - "target": "indexmap" - }, - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "zopfli 0.8.2", - "target": "zopfli" - } - ], - "selects": { - "cfg(fuzzing)": [ - { - "id": "arbitrary 1.4.2", - "target": "arbitrary" - } - ] - } - }, - "edition": "2021", - "version": "5.1.1" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "zlib-rs 0.5.2": { - "name": "zlib-rs", - "version": "0.5.2", - "package_url": "https://github.com/trifectatechfoundation/zlib-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zlib-rs/0.5.2/download", - "sha256": "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zlib_rs", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zlib_rs", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "rust-allocator", - "std" - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.2" - }, - "license": "Zlib", - "license_ids": [ - "Zlib" - ], - "license_file": "LICENSE" - }, - "zopfli 0.8.2": { - "name": "zopfli", - "version": "0.8.2", - "package_url": "https://github.com/zopfli-rs/zopfli", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zopfli/0.8.2/download", - "sha256": "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zopfli", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zopfli", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "gzip", - "std", - "zlib" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bumpalo 3.19.0", - "target": "bumpalo" - }, - { - "id": "crc32fast 1.5.0", - "target": "crc32fast" - }, - { - "id": "log 0.4.28", - "target": "log" - }, - { - "id": "simd-adler32 0.3.7", - "target": "simd_adler32" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.8.2" - }, - "license": "Apache-2.0", - "license_ids": [ - "Apache-2.0" - ], - "license_file": null - }, - "zstd 0.11.2+zstd.1.5.2": { - "name": "zstd", - "version": "0.11.2+zstd.1.5.2", - "package_url": "https://github.com/gyscos/zstd-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zstd/0.11.2+zstd.1.5.2/download", - "sha256": "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zstd", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zstd", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "arrays", - "default", - "legacy", - "zdict_builder" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zstd-safe 5.0.2+zstd.1.5.2", - "target": "zstd_safe" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.11.2+zstd.1.5.2" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "zstd-safe 5.0.2+zstd.1.5.2": { - "name": "zstd-safe", - "version": "5.0.2+zstd.1.5.2", - "package_url": "https://github.com/gyscos/zstd-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zstd-safe/5.0.2+zstd.1.5.2/download", - "sha256": "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zstd_safe", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zstd_safe", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "arrays", - "legacy", - "std", - "zdict_builder" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "zstd-safe 5.0.2+zstd.1.5.2", - "target": "build_script_build" - }, - { - "id": "zstd-sys 2.0.16+zstd.1.5.7", - "target": "zstd_sys" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "5.0.2+zstd.1.5.2" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "link_deps": { - "common": [ - { - "id": "zstd-sys 2.0.16+zstd.1.5.7", - "target": "zstd_sys" - } - ], - "selects": {} - } - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE" - }, - "zstd-sys 2.0.16+zstd.1.5.7": { - "name": "zstd-sys", - "version": "2.0.16+zstd.1.5.7", - "package_url": "https://github.com/gyscos/zstd-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/zstd-sys/2.0.16+zstd.1.5.7/download", - "sha256": "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" - } - }, - "targets": [ - { - "Library": { - "crate_name": "zstd_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "zstd_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "legacy", - "std", - "zdict_builder" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zstd-sys 2.0.16+zstd.1.5.7", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "2.0.16+zstd.1.5.7" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cc 1.2.39", - "target": "cc" - }, - { - "id": "pkg-config 0.3.32", - "target": "pkg_config" - } - ], - "selects": {} - }, - "links": "zstd" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE" - } - }, - "binary_crates": [], - "workspace_members": { - "selenium-manager 0.4.44-nightly": "rust" - }, - "conditions": { - "aarch64-apple-darwin": [ - "aarch64-apple-darwin" - ], - "aarch64-linux-android": [], - "aarch64-pc-windows-gnullvm": [], - "aarch64-unknown-linux-gnu": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))": [], - "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))": [ - "aarch64-apple-darwin" - ], - "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ - "x86_64-pc-windows-msvc" - ], - "cfg(all(any(target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [], - "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ - "aarch64-apple-darwin", - "wasm32-unknown-unknown", - "wasm32-wasip1" - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ - "aarch64-unknown-linux-gnu" - ], - "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ - "aarch64-apple-darwin" - ], - "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [], - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ - "wasm32-unknown-unknown" - ], - "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - "wasm32-unknown-unknown" - ], - "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))": [], - "cfg(all(tokio_uring, target_os = \"linux\"))": [], - "cfg(any())": [], - "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [], - "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [], - "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [], - "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [], - "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ - "aarch64-apple-darwin" - ], - "cfg(any(unix, target_os = \"wasi\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "wasm32-wasip1", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(windows, target_os = \"cygwin\"))": [ - "x86_64-pc-windows-msvc" - ], - "cfg(fuzzing)": [], - "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "wasm32-wasip1", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(not(target_arch = \"wasm32\"))": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(not(target_has_atomic = \"ptr\"))": [], - "cfg(target_arch = \"wasm32\")": [ - "wasm32-unknown-unknown", - "wasm32-wasip1" - ], - "cfg(target_feature = \"atomics\")": [], - "cfg(target_os = \"android\")": [], - "cfg(target_os = \"haiku\")": [], - "cfg(target_os = \"hermit\")": [], - "cfg(target_os = \"netbsd\")": [], - "cfg(target_os = \"redox\")": [], - "cfg(target_os = \"solaris\")": [], - "cfg(target_os = \"vxworks\")": [], - "cfg(target_os = \"wasi\")": [ - "wasm32-wasip1" - ], - "cfg(target_os = \"windows\")": [ - "x86_64-pc-windows-msvc" - ], - "cfg(target_vendor = \"apple\")": [ - "aarch64-apple-darwin" - ], - "cfg(tokio_taskdump)": [], - "cfg(unix)": [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(windows)": [ - "x86_64-pc-windows-msvc" - ], - "cfg(windows_raw_dylib)": [], - "i686-pc-windows-gnu": [], - "i686-pc-windows-gnullvm": [], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" - ], - "x86_64-pc-windows-gnu": [], - "x86_64-pc-windows-gnullvm": [], - "x86_64-pc-windows-msvc": [ - "x86_64-pc-windows-msvc" - ], - "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" - ] - }, - "direct_deps": [ - "anyhow 1.0.100", - "apple-flat-package 0.20.0", - "bzip2 0.6.0", - "clap 4.5.48", - "debpkg 0.6.0", - "directories 6.0.0", - "env_logger 0.11.8", - "exitcode 1.1.2", - "flate2 1.1.2", - "fs2 0.4.3", - "fs_extra 1.3.0", - "infer 0.19.0", - "log 0.4.28", - "regex 1.11.3", - "reqwest 0.12.23", - "serde 1.0.228", - "serde_json 1.0.145", - "sevenz-rust 0.6.1", - "tar 0.4.44", - "tempfile 3.23.0", - "tokio 1.47.1", - "toml 0.9.7", - "walkdir 2.5.0", - "which 8.0.0", - "winapi 0.3.9", - "xz2 0.1.7", - "zip 5.1.1" - ], - "direct_dev_deps": [ - "assert_cmd 2.0.17", - "is_executable 1.0.5", - "rstest 0.26.1" - ], - "unused_patches": [] -} diff --git a/rust/private/rustfmt_wrapper.bzl b/rust/private/rustfmt_wrapper.bzl index 07bf75d3327b9..21313d3711095 100644 --- a/rust/private/rustfmt_wrapper.bzl +++ b/rust/private/rustfmt_wrapper.bzl @@ -1,12 +1,8 @@ load("@apple_rules_lint//lint:defs.bzl", "get_lint_config") -load( - "@rules_rust//rust:defs.bzl", - "rustfmt_test", - _rust_binary = "rust_binary", - _rust_library = "rust_library", - _rust_test = "rust_test", - _rust_test_suite = "rust_test_suite", -) +load("@rules_rs//rs:rust_binary.bzl", _rust_binary = "rust_binary") +load("@rules_rs//rs:rust_library.bzl", _rust_library = "rust_library") +load("@rules_rs//rs:rust_test.bzl", _rust_test = "rust_test") +load("@rules_rust//rust:defs.bzl", "rustfmt_test", _rust_test_suite = "rust_test_suite") def _wrap_with_fmt_test(name, tags): config = get_lint_config("rust-rustfmt", tags) diff --git a/rust/tests/BUILD.bazel b/rust/tests/BUILD.bazel index 4e9fe58819bed..3bf6c7834529c 100644 --- a/rust/tests/BUILD.bazel +++ b/rust/tests/BUILD.bazel @@ -1,4 +1,4 @@ -load("@crates//:defs.bzl", "all_crate_deps") +load("@crates//:defs.bzl", "aliases", "all_crate_deps") load("//rust:defs.bzl", "rust_test_suite", "rustfmt_config") rustfmt_config( @@ -9,6 +9,7 @@ rust_test_suite( name = "integration", size = "small", srcs = glob(["**/*_tests.rs"]), + aliases = aliases(), data = [ "//rust:selenium-manager", ], diff --git a/third_party/bazel/hermetic_llvm_windows_exec_toolchains.patch b/third_party/bazel/hermetic_llvm_windows_exec_toolchains.patch new file mode 100644 index 0000000000000..bdcaf4b22345d --- /dev/null +++ b/third_party/bazel/hermetic_llvm_windows_exec_toolchains.patch @@ -0,0 +1,10 @@ +--- a/extensions/toolchain.bzl ++++ b/extensions/toolchain.bzl +@@ -65,6 +65,6 @@ _platform_tag = tag_class( + "os": attr.string( + mandatory = True, +- values = ["linux", "macos"], ++ values = ["linux", "macos", "windows"], + ), + "arch": attr.string( + mandatory = True,