From d550ce5974848843787510d0c622320c828d652e Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Thu, 22 Jan 2026 13:27:52 +0000 Subject: [PATCH 1/4] Upgrade to cargo_metadata 0.23 --- Cargo.lock | 66 +++++++++++++++++++++++++-------------------------- Cargo.toml | 2 +- src/common.rs | 2 +- 3 files changed, 34 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2789113..e4f4aaa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -65,11 +65,12 @@ dependencies = [ [[package]] name = "cargo-platform" -version = "0.1.9" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082" dependencies = [ "serde", + "serde_core", ] [[package]] @@ -94,16 +95,16 @@ dependencies = [ [[package]] name = "cargo_metadata" -version = "0.15.4" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" +checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9" dependencies = [ "camino", "cargo-platform", "semver", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror", ] [[package]] @@ -570,7 +571,7 @@ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ "getrandom", "libredox", - "thiserror 2.0.16", + "thiserror", ] [[package]] @@ -730,18 +731,28 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", @@ -761,14 +772,15 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.140" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ "itoa", "memchr", - "ryu", "serde", + "serde_core", + "zmij", ] [[package]] @@ -837,33 +849,13 @@ dependencies = [ "xattr", ] -[[package]] -name = "thiserror" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" -dependencies = [ - "thiserror-impl 1.0.69", -] - [[package]] name = "thiserror" version = "2.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" dependencies = [ - "thiserror-impl 2.0.16", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" -dependencies = [ - "proc-macro2", - "quote", - "syn", + "thiserror-impl", ] [[package]] @@ -1212,3 +1204,9 @@ dependencies = [ "quote", "syn", ] + +[[package]] +name = "zmij" +version = "1.0.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfcd145825aace48cff44a8844de64bf75feec3080e0aa5cdbde72961ae51a65" diff --git a/Cargo.toml b/Cargo.toml index 52860b2..4b01b3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ categories = ["development-tools::cargo-plugins", "command-line-utilities"] exclude = ["deps_tests/"] [dependencies] -cargo_metadata = "0.15.0" +cargo_metadata = "0.23.0" csv = "1.1" flate2 = "1" humantime = "2" diff --git a/src/common.rs b/src/common.rs index 3a9e29f..39a4319 100644 --- a/src/common.rs +++ b/src/common.rs @@ -176,7 +176,7 @@ pub fn crate_names_from_source(crates: &[SourcedPackage], source: PkgSource) -> let mut filtered_crate_names: Vec = crates .iter() .filter(|p| p.source == source) - .map(|p| p.package.name.clone()) + .map(|p| p.package.name.to_string()) .collect(); // Collecting into a HashSet is less user-friendly because order varies between runs filtered_crate_names.sort_unstable(); From 753dc7c050e9eed65848cae759f3d6beb24663ec Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Thu, 22 Jan 2026 13:48:56 +0000 Subject: [PATCH 2/4] Remove broken snapshot tests. The tool clearly still works and the test are too janky to keep. We'll use fixtures instead --- deps_tests/README.md | 30 - deps_tests/cargo_0.70.1.deps.json | 42201 ---------------- deps_tests/cargo_0.70.1.deps_no_dev.json | 40774 ---------------- deps_tests/cargo_0.70.1.metadata.json | 47487 ------------------- deps_tests/snapbox_0.4.11.deps.json | 17485 ------- deps_tests/snapbox_0.4.11.deps_no_dev.json | 17485 ------- deps_tests/snapbox_0.4.11.metadata.json | 19073 -------- src/common.rs | 26 - 8 files changed, 184561 deletions(-) delete mode 100644 deps_tests/README.md delete mode 100644 deps_tests/cargo_0.70.1.deps.json delete mode 100644 deps_tests/cargo_0.70.1.deps_no_dev.json delete mode 100644 deps_tests/cargo_0.70.1.metadata.json delete mode 100644 deps_tests/snapbox_0.4.11.deps.json delete mode 100644 deps_tests/snapbox_0.4.11.deps_no_dev.json delete mode 100644 deps_tests/snapbox_0.4.11.metadata.json diff --git a/deps_tests/README.md b/deps_tests/README.md deleted file mode 100644 index 6c1ffb9..0000000 --- a/deps_tests/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# deps_tests - -The files in this directory are used by tests in `../src/common.rs`. - -Each of the `.metadata.json` files was generated with a command of the following form: - -```sh -cargo metadata | -sed "s,${PWD},\$CARGO_MANIFEST_DIR,g" | -sed "s,${HOME},\$HOME,g" | -jq --sort-keys > ${CARGO_SUPPLY_CHAIN_DIR}/deps_tests/${PACKAGE}_${VERSION}.metadata.json -``` - -The other files were then generated with the following command: - -``` -BLESS=1 cargo test 'tests::deps' -``` - -Optionally, all of the `.json` files can be normalized with the following command: - -```sh -for X in *.json; do - Y="$(mktemp)" - jq --sort-keys < "$X" > "$Y" - mv -f "$Y" "$X" -done -``` - -"Optionally" because the tests should not require the `.json` files to be normalized. diff --git a/deps_tests/cargo_0.70.1.deps.json b/deps_tests/cargo_0.70.1.deps.json deleted file mode 100644 index bfc7880..0000000 --- a/deps_tests/cargo_0.70.1.deps.json +++ /dev/null @@ -1,42201 +0,0 @@ -[ - { - "package": { - "authors": [ - "Jonas Schievink " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple clean-room implementation of the Adler-32 checksum", - "documentation": "https://docs.rs/adler/", - "edition": "2015", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "homepage": null, - "id": "adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "checksum", - "integrity", - "hash", - "adler32", - "zlib" - ], - "license": "0BSD OR MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg=docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-commit-message": "Release {{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", - "search": "## Unreleased\n" - }, - { - "file": "README.md", - "replace": "adler = \"{{version}}\"", - "search": "adler = \"[a-z0-9\\\\.-]+\"" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/adler/{{version}}", - "search": "https://docs.rs/adler/[a-z0-9\\.-]+" - } - ], - "tag-message": "{{version}}" - } - }, - "name": "adler", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jonas-schievink/adler.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "adler", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/benches/bench.rs", - "test": false - } - ], - "version": "1.0.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Fast multiple substring searching.", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [ - "memchr/std" - ] - }, - "homepage": "https://github.com/BurntSushi/aho-corasick", - "id": "aho-corasick 0.7.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "search", - "text", - "aho", - "multi" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/Cargo.toml", - "name": "aho-corasick", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "aho_corasick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs", - "test": true - } - ], - "version": "0.7.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "log", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast multiple substring searching.", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std", - "perf-literal" - ], - "logging": [ - "dep:log" - ], - "perf-literal": [ - "dep:memchr" - ], - "std": [ - "memchr?/std" - ] - }, - "homepage": "https://github.com/BurntSushi/aho-corasick", - "id": "aho-corasick 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "search", - "text", - "pattern", - "multi" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "aho-corasick", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "aho_corasick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-1.0.1/src/lib.rs", - "test": true - } - ], - "version": "1.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-query", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "colorchoice", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "owo-colors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "strip-ansi-escapes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-wincon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.", - "documentation": null, - "edition": "2021", - "features": { - "auto": [ - "dep:anstyle-query", - "dep:colorchoice", - "dep:is-terminal" - ], - "default": [ - "auto", - "wincon" - ], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstream", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "strip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/strip.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/wincon.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/stream.rs", - "test": false - } - ], - "version": "0.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "ANSI text styling", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-prefix": "" - } - }, - "name": "anstyle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/examples/dump.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arrayvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "codegenrs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "vte_generate_state_changes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parse ANSI Style Escapes", - "documentation": null, - "edition": "2021", - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-parse", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "parselog", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/examples/parselog.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/benches/parse.rs", - "test": false - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Look up colored console capabilities", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-query", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-query", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "report", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/examples/report.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Styling legacy Windows terminals", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-wincon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-wincon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/examples/dump.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/examples/set.rs", - "test": false - } - ], - "version": "1.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "dev", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "thiserror", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.66", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Flexible concrete Error type built on std::error::Error", - "documentation": "https://docs.rs/anyhow", - "edition": "2018", - "features": { - "backtrace": [ - "dep:backtrace" - ], - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "error", - "error-handling" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "anyhow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/anyhow", - "rust_version": "^1.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "anyhow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_downcast", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_downcast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ffi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_ffi.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_context", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_context.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_repr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_repr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_chain", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_chain.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ensure", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_ensure.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_macros.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_convert", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_convert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_source", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_source.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_backtrace", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_backtrace.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_autotrait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_autotrait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_boxed", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_boxed.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/build.rs", - "test": false - } - ], - "version": "1.0.71" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "matches", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", - "documentation": "https://docs.rs/arrayvec/", - "edition": "2018", - "features": { - "array-sizes-129-255": [], - "array-sizes-33-128": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "unstable-const-fn": [] - }, - "homepage": null, - "id": "arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "stack", - "vector", - "array", - "data-structure", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "arrayvec", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/arrayvec", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "arrayvec", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "extend", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/benches/extend.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "arraystring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/benches/arraystring.rs", - "test": false - } - ], - "version": "0.5.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [], - "description": "Automatic cfg for Rust compiler features", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml", - "name": "autocfg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "autocfg", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "integers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "versions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "paths", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "rustflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [], - "description": "Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids\nany usages of data-dependent branches/LUTs and thereby provides portable\n\"best effort\" constant-time operation and embedded-friendly no_std support\n", - "documentation": "https://docs.rs/base16ct", - "edition": "2021", - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hex", - "hexadecimal" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "base16ct", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/base16ct", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "base16ct", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/tests/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/benches/mod.rs", - "test": false - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alice Maz ", - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "structopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "encodes and decodes base64 as bytes or utf8", - "documentation": "https://docs.rs/base64", - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/Cargo.toml", - "name": "base64", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "base64", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "base64", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/base64.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "make_tables", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/make_tables.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "decode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/decode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "helpers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/helpers.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "encode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/encode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "benchmarks", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/benches/benchmarks.rs", - "test": false - } - ], - "version": "0.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "base64", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.21", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", - "documentation": "https://docs.rs/base64ct", - "edition": "2021", - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "base64", - "pem", - "phc" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "base64ct", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/base64ct", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "base64ct", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "bcrypt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/bcrypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "crypt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/crypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "shacrypt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/shacrypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "url", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/url.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "standard", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/standard.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "proptests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/proptests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/benches/mod.rs", - "test": false - } - ], - "version": "1.6.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to generate structures which behave like bitflags.\n", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/bitflags/bitflags", - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "name": "bitflags", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs", - "test": true - } - ], - "version": "1.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest-derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fixed size boolean arrays", - "documentation": "http://docs.rs/bitmaps", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitmaps-2.1.0/Cargo.toml", - "name": "bitmaps", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/bodil/bitmaps", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitmaps", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitmaps-2.1.0/src/lib.rs", - "test": true - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "generic-array", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Buffer type for block processing of data", - "documentation": "https://docs.rs/block-buffer", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "block-buffer 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "block", - "buffer" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/Cargo.toml", - "name": "block-buffer", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "block-buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/tests/mod.rs", - "test": true - } - ], - "version": "0.10.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing", - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.14.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex-automata", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "ucd-parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "unicode-segmentation", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A string type that is not required to be valid UTF-8.", - "documentation": "https://docs.rs/bstr", - "edition": "2021", - "features": { - "alloc": [ - "serde?/alloc" - ], - "default": [ - "std", - "unicode" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc", - "memchr/std", - "serde?/std" - ], - "unicode": [ - "dep:once_cell", - "dep:regex-automata" - ] - }, - "homepage": "https://github.com/BurntSushi/bstr", - "id": "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "str", - "byte", - "bytes", - "text" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "bstr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/bstr", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "bstr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "graphemes", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/graphemes.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lines", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/lines.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "uppercase", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/uppercase.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "words", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/words.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "words-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/words-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lines-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/lines-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "uppercase-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/uppercase-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "graphemes-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/graphemes-std.rs", - "test": false - } - ], - "version": "1.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "memory-management", - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A fast bump allocation arena for Rust.", - "documentation": "https://docs.rs/bumpalo", - "edition": "2021", - "features": { - "allocator_api": [], - "boxed": [], - "collections": [], - "default": [] - }, - "homepage": null, - "id": "bumpalo 3.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "bumpalo", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/fitzgen/bumpalo", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "bumpalo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "try_alloc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/tests/try_alloc.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "benches", - "required-features": [ - "collections" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/benches/benches.rs", - "test": false - } - ], - "version": "3.12.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Hyunsik Choi " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "an utility for human-readable bytes representations", - "documentation": "https://docs.rs/bytesize/", - "edition": "2015", - "features": { - "default": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/hyunsik/bytesize/", - "id": "bytesize 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "byte", - "byte-size", - "utility", - "human-readable", - "format" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/Cargo.toml", - "name": "bytesize", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hyunsik/bytesize/", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "bytesize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs", - "test": true - } - ], - "version": "1.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.47", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "base64", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bytesize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cargo-platform", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-platform", - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cargo-util", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-util", - "registry": null, - "rename": null, - "req": "^0.2.3", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "clap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^4.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crates-io", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/crates-io", - "registry": null, - "rename": null, - "req": "^0.36.0", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [ - "http2" - ], - "kind": "normal", - "name": "curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.44", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "curl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.59", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "env_logger", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": "normal", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "git2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.16.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "git2-curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.17.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hmac", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "home", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "http-auth", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ignore", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "im-rc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^15.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "indexmap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazycell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libgit2-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.14.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "opener", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "os_info", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "v3", - "paserk", - "std", - "serde" - ], - "kind": "normal", - "name": "pasetors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pathdiff", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pretty_env_logger", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-workspace-hack", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustfix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "semver", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.123", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde-value", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_ignored", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "raw_value" - ], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.30", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha1", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "shell-escape", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "strip-ansi-escapes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": "normal", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml_edit", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.19.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-width", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-xid", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "cargo-test-macro", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "cargo-test-support", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff", - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": "build", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "fwdansi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_Console", - "Win32_System_Threading", - "Win32_System_JobObjects", - "Win32_Security", - "Win32_System_SystemServices" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cargo, a package manager for Rust.\n", - "documentation": "https://docs.rs/cargo", - "edition": "2021", - "features": { - "openssl": [ - "dep:openssl" - ], - "pretty-env-logger": [ - "pretty_env_logger" - ], - "pretty_env_logger": [ - "dep:pretty_env_logger" - ], - "vendored-libgit2": [ - "libgit2-sys/vendored" - ], - "vendored-openssl": [ - "openssl/vendored" - ] - }, - "homepage": "https://crates.io", - "id": "cargo 0.70.1 (path+file://$CARGO_MANIFEST_DIR)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/Cargo.toml", - "name": "cargo", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/cargo/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "cargo", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/bin/cargo/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "build-std", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/build-std/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "internal", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/internal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/build.rs", - "test": false - } - ], - "version": "0.70.1" - }, - "source": "Local" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Cargo's representation of a target platform.", - "documentation": "https://docs.rs/cargo-platform", - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-platform 0.1.2 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-platform)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/Cargo.toml", - "name": "cargo-platform", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-platform", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "matches", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/examples/matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_cfg", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/tests/test_cfg.rs", - "test": true - } - ], - "version": "0.1.2" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Helper proc-macro for Cargo's testsuite.", - "documentation": "https://github.com/rust-lang/cargo", - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro/Cargo.toml", - "name": "cargo-test-macro", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "proc-macro" - ], - "name": "cargo-test-macro", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro/src/lib.rs", - "test": true - } - ], - "version": "0.1.0" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cargo-test-macro", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cargo-util", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-util", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crates-io", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/crates-io", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": "normal", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "git2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.16.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "v3", - "paserk", - "std", - "serde" - ], - "kind": "normal", - "name": "pasetors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.123", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff", - "path" - ], - "kind": "normal", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": "normal", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": null, - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "cargo-test-support 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-support)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support/Cargo.toml", - "name": "cargo-test-support", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-test-support", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support/build.rs", - "test": false - } - ], - "version": "0.1.0" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crypto-hash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.88", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "shell-escape", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "mac_os_10_7_support" - ], - "kind": "normal", - "name": "core-foundation", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"macos\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "miow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation", - "Win32_System_Console" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Miscellaneous support code used by Cargo.", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-util/Cargo.toml", - "name": "cargo-util", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-util", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-util/src/lib.rs", - "test": true - } - ], - "version": "0.2.3" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "features": { - "jobserver": [ - "dep:jobserver" - ], - "parallel": [ - "jobserver" - ] - }, - "homepage": "https://github.com/rust-lang/cc-rs", - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/Cargo.toml", - "name": "cc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "gcc-shim", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/bin/gcc-shim.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cxxflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cxxflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cc_env", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cc_env.rs", - "test": true - } - ], - "version": "1.0.79" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/alexcrichton/cfg-if", - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml", - "name": "cfg-if", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cfg-if", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "xcrate", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clap_builder", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=4.2.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "clap_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=4.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "shlex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.77", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "color-auto", - "diff", - "examples" - ], - "kind": "dev", - "name": "trycmd", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.15", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unic-emoji-char", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "documentation": null, - "edition": "2021", - "features": { - "cargo": [ - "clap_builder/cargo" - ], - "color": [ - "clap_builder/color" - ], - "debug": [ - "clap_builder/debug", - "clap_derive?/debug" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [ - "clap_builder/deprecated", - "clap_derive?/deprecated" - ], - "derive": [ - "dep:clap_derive", - "dep:once_cell" - ], - "env": [ - "clap_builder/env" - ], - "error-context": [ - "clap_builder/error-context" - ], - "help": [ - "clap_builder/help" - ], - "std": [ - "clap_builder/std" - ], - "string": [ - "clap_builder/string" - ], - "suggestions": [ - "clap_builder/suggestions" - ], - "unicode": [ - "clap_builder/unicode" - ], - "unstable-doc": [ - "clap_builder/unstable-doc", - "derive" - ], - "unstable-styles": [ - "clap_builder/unstable-styles" - ], - "unstable-v5": [ - "clap_builder/unstable-v5", - "clap_derive?/unstable-v5", - "deprecated" - ], - "usage": [ - "clap_builder/usage" - ], - "wrap_help": [ - "clap_builder/wrap_help" - ] - }, - "homepage": null, - "id": "clap 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "file": "CITATION.cff", - "replace": "date-released: {{date}}", - "search": "^date-released: ....-..-.." - }, - { - "file": "CITATION.cff", - "replace": "version: {{version}}", - "search": "^version: .+\\..+\\..+" - } - ], - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "name": "clap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "stdio-fixture", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/src/bin/stdio-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "demo", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/demo.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "cargo-example", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/cargo-example.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "cargo-example-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/cargo-example-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "escaped-positional", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/escaped-positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "escaped-positional-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/escaped-positional-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "find", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/find.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "git-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/git-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "typed-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/typed-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "busybox", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/multicall-busybox.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "hostname", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/multicall-hostname.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "repl", - "required-features": [ - "help" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/repl.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "01_quick", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/01_quick.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_apps", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_apps.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_crate", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_crate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_app_settings", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_app_settings.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_bool", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_01_flag_bool.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_count", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_01_flag_count.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_02_option.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_mult", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_02_option_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_03_positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_mult", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_03_positional_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_04_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_05_default_values", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_05_default_values.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_possible", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_01_possible.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_enum", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_01_enum.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_parse", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_02_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_validate", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_02_validate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_03_relations", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_03_relations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_04_custom", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_04_custom.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "05_01_assert", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/05_01_assert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "01_quick_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/01_quick.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_apps_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_apps.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_crate_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_crate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_app_settings_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_app_settings.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_bool_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_01_flag_bool.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_count_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_01_flag_count.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_02_option.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_mult_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_02_option_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_03_positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_mult_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_03_positional_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_04_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands_alt_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_04_subcommands_alt.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_05_default_values_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_05_default_values.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_enum_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_01_enum.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_parse_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_02_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_validate_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_02_validate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_03_relations_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_03_relations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_04_custom_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_04_custom.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "05_01_assert_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/05_01_assert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_augment_args", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/augment_args.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_augment_subcommands", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/augment_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_hand_subcommand", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/hand_subcommand.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_flatten_hand_args", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/flatten_hand_args.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "pacman", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/pacman.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "git", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/git.rs", - "test": false - } - ], - "version": "4.2.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.67", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "clap_lex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "strsim", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "terminal_size", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicase", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-width", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "color-print", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "shlex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.77", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "color-auto", - "diff", - "examples" - ], - "kind": "dev", - "name": "trycmd", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.15", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unic-emoji-char", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "documentation": null, - "edition": "2021", - "features": { - "cargo": [ - "dep:once_cell" - ], - "color": [ - "dep:anstream" - ], - "debug": [ - "dep:backtrace" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [], - "env": [], - "error-context": [], - "help": [], - "std": [ - "anstyle/std" - ], - "string": [], - "suggestions": [ - "dep:strsim", - "error-context" - ], - "unicode": [ - "dep:unicode-width", - "dep:unicase" - ], - "unstable-doc": [ - "cargo", - "wrap_help", - "env", - "unicode", - "string", - "unstable-styles" - ], - "unstable-styles": [ - "color" - ], - "unstable-v5": [ - "deprecated" - ], - "usage": [], - "wrap_help": [ - "help", - "dep:terminal_size" - ] - }, - "homepage": null, - "id": "clap_builder 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_builder-4.2.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "name": "clap_builder", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap_builder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_builder-4.2.7/src/lib.rs", - "test": true - } - ], - "version": "4.2.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Minimal, flexible command line parser", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "clap_lex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_lex-0.4.1/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 4, - "file": "README.md", - "prerelease": true, - "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", - "search": "github.com/clap-rs/clap/blob/[^/]+/" - } - ] - } - }, - "name": "clap_lex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap/tree/master/clap_lex", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap_lex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_lex-0.4.1/src/lib.rs", - "test": true - } - ], - "version": "0.4.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Global override of color control", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "colorchoice", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "colorchoice", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clippy", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "commoncrypto-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Idiomatic Rust wrappers for Mac OS X's CommonCrypto library", - "documentation": "https://docs.rs/commoncrypto", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "lint": [ - "clippy" - ] - }, - "homepage": null, - "id": "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest", - "osx", - "commoncrypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/Cargo.toml", - "name": "commoncrypto", - "publish": null, - "readme": null, - "repository": "https://github.com/malept/rust-commoncrypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "commoncrypto", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "hash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/tests/hash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "pbkdf2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/tests/pbkdf2.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clippy", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "FFI bindings to Mac OS X's CommonCrypto library", - "documentation": "https://docs.rs/commoncrypto-sys", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "lint": [ - "clippy" - ] - }, - "homepage": null, - "id": "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest", - "osx", - "commoncrypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/Cargo.toml", - "name": "commoncrypto-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/malept/rust-commoncrypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "commoncrypto-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "hash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/tests/hash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "pbkdf2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/tests/pbkdf2.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", - "documentation": "https://docs.rs/const-oid", - "edition": "2021", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "db": [], - "std": [] - }, - "homepage": null, - "id": "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iso", - "iec", - "itu", - "oid" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "const-oid", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", - "rust_version": "^1.57", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "const-oid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/tests/lib.rs", - "test": true - } - ], - "version": "0.9.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Peter " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast inspection of binary buffers to guess/determine the encoding", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/sharkdp/content_inspector", - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "encoding", - "binary", - "text", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/Cargo.toml", - "name": "content_inspector", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sharkdp/content_inspector", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "content_inspector", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "inspect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/examples/inspect.rs", - "test": false - } - ], - "version": "0.2.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "os::macos-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "chrono", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "core-foundation-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "uuid", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Bindings to Core Foundation for macOS", - "documentation": null, - "edition": "2015", - "features": { - "chrono": [ - "dep:chrono" - ], - "mac_os_10_7_support": [ - "core-foundation-sys/mac_os_10_7_support" - ], - "mac_os_10_8_features": [ - "core-foundation-sys/mac_os_10_8_features" - ], - "uuid": [ - "dep:uuid" - ], - "with-chrono": [ - "chrono" - ], - "with-uuid": [ - "uuid" - ] - }, - "homepage": "https://github.com/servo/core-foundation-rs", - "id": "core-foundation 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macos", - "framework", - "objc" - ], - "license": "MIT / Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "name": "core-foundation", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "core-foundation", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "use_macro_outside_crate", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/tests/use_macro_outside_crate.rs", - "test": true - } - ], - "version": "0.9.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Servo Project Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Bindings to Core Foundation for macOS", - "documentation": null, - "edition": "2015", - "features": { - "mac_os_10_7_support": [], - "mac_os_10_8_features": [] - }, - "homepage": "https://github.com/servo/core-foundation-rs", - "id": "core-foundation-sys 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT / Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "name": "core-foundation-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "core-foundation-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.4/src/lib.rs", - "test": true - } - ], - "version": "0.8.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "hardware-support", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-linux-android", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", - "uses_default_features": true - } - ], - "description": "Lightweight runtime CPU feature detection for x86/x86_64 and aarch64 with\nno_std support and support for mobile targets including Android and iOS\n", - "documentation": "https://docs.rs/cpufeatures", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cpuid", - "target-feature" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/Cargo.toml", - "name": "cpufeatures", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cpufeatures", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "x86", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/tests/x86.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "aarch64", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/tests/aarch64.rs", - "test": true - } - ], - "version": "0.2.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "percent-encoding", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Helpers for interacting with crates.io\n", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/crates-io/Cargo.toml", - "name": "crates-io", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "crates_io", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/crates-io/lib.rs", - "test": true - } - ], - "version": "0.36.0" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [ - "Sam Rijs ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "documentation": null, - "edition": "2015", - "features": { - "default": [ - "std" - ], - "nightly": [], - "std": [] - }, - "homepage": null, - "id": "crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "checksum", - "crc", - "crc32", - "simd", - "fast" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/Cargo.toml", - "name": "crc32fast", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/srijs/rust-crc32fast", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "crc32fast", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/build.rs", - "test": false - } - ], - "version": "1.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "algorithms", - "cryptography", - "data-structures", - "mathematics", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "der", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "generic-array", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rlp", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "html_reports" - ], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-bigint", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-integer", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-traits", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_chacha", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of a big integer library which has been designed from\nthe ground-up for use in cryptographic applications. Provides constant-time,\nno_std-friendly implementations of modern formulas using const generics.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [], - "default": [ - "rand" - ], - "der": [ - "dep:der" - ], - "generic-array": [ - "dep:generic-array" - ], - "rand": [ - "rand_core/std" - ], - "rand_core": [ - "dep:rand_core" - ], - "rlp": [ - "dep:rlp" - ], - "serde": [ - "dep:serdect" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "crypto-bigint 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "arbitrary", - "crypto", - "bignum", - "integer", - "precision" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "crypto-bigint", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/crypto-bigint", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "crypto-bigint", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "const_residue", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/const_residue.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "impl_modulus", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/impl_modulus.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "proptests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/proptests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/benches/bench.rs", - "test": false - } - ], - "version": "0.5.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "more_lengths" - ], - "kind": "normal", - "name": "generic-array", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Common cryptographic traits", - "documentation": "https://docs.rs/crypto-common", - "edition": "2018", - "features": { - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [] - }, - "homepage": null, - "id": "crypto-common 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "traits" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "crypto-common", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crypto-common", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs", - "test": true - } - ], - "version": "0.1.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "commoncrypto", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(target_os = \"windows\", target_os = \"macos\", target_os = \"ios\")))", - "uses_default_features": true - }, - { - "features": [ - "minwindef", - "wincrypt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"windows\")", - "uses_default_features": true - } - ], - "description": "A wrapper for OS-level cryptographic hash functions", - "documentation": "https://docs.rs/crypto-hash", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "crypto-hash 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-hash-0.3.4/Cargo.toml", - "name": "crypto-hash", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/malept/crypto-hash", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "crypto-hash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-hash-0.3.4/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Frank Denis " - ], - "categories": [ - "no-std", - "cryptography", - "encoding" - ], - "default_run": null, - "dependencies": [], - "description": "Constant-time hex and base64 codecs from libsodium reimplemented in Rust", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/jedisct1/rust-ct-codecs", - "id": "ct-codecs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "base64", - "hex", - "crypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ct-codecs-1.1.1/Cargo.toml", - "name": "ct-codecs", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-ct-codecs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ct-codecs", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ct-codecs-1.1.1/src/lib.rs", - "test": true - } - ], - "version": "1.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "api-bindings", - "web-programming::http-client" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "curl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "socket2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "mio", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "mio-extras", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-probe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "schannel", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [ - "libloaderapi", - "wincrypt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "Rust bindings to libcurl for making HTTP requests", - "documentation": "https://docs.rs/curl", - "edition": "2018", - "features": { - "default": [ - "ssl" - ], - "force-system-lib-on-osx": [ - "curl-sys/force-system-lib-on-osx" - ], - "http2": [ - "curl-sys/http2" - ], - "mesalink": [ - "curl-sys/mesalink" - ], - "ntlm": [ - "curl-sys/ntlm" - ], - "openssl-probe": [ - "dep:openssl-probe" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "poll_7_68_0": [ - "curl-sys/poll_7_68_0" - ], - "protocol-ftp": [ - "curl-sys/protocol-ftp" - ], - "rustls": [ - "curl-sys/rustls" - ], - "spnego": [ - "curl-sys/spnego" - ], - "ssl": [ - "openssl-sys", - "openssl-probe", - "curl-sys/ssl" - ], - "static-curl": [ - "curl-sys/static-curl" - ], - "static-ssl": [ - "curl-sys/static-ssl" - ], - "upkeep_7_62_0": [ - "curl-sys/upkeep_7_62_0" - ], - "zlib-ng-compat": [ - "curl-sys/zlib-ng-compat", - "static-curl" - ] - }, - "homepage": "https://github.com/alexcrichton/curl-rust", - "id": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/Cargo.toml", - "name": "curl", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/curl-rust", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "curl", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "https", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/https.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ssl_proxy", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/ssl_proxy.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ssl_cert_blob", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/ssl_cert_blob.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "aws_sigv4", - "required-features": [ - "static-curl", - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/aws_sigv4.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "multi-dl", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/multi-dl.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "doh", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/doh.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "atexit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/atexit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "post", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/post.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "multi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/multi.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "easy", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/easy.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "protocols", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/protocols.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/build.rs", - "test": false - } - ], - "version": "0.4.44" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libnghttp2-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": "normal", - "name": "libz-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "no_log_capture" - ], - "kind": "normal", - "name": "rustls-ffi", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [ - "winsock2", - "ws2def" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libcurl library", - "documentation": "https://docs.rs/curl-sys", - "edition": "2018", - "features": { - "default": [ - "ssl" - ], - "force-system-lib-on-osx": [], - "http2": [ - "libnghttp2-sys" - ], - "libnghttp2-sys": [ - "dep:libnghttp2-sys" - ], - "mesalink": [], - "ntlm": [], - "openssl-sys": [ - "dep:openssl-sys" - ], - "poll_7_68_0": [], - "protocol-ftp": [], - "rustls": [ - "rustls-ffi" - ], - "rustls-ffi": [ - "dep:rustls-ffi" - ], - "spnego": [], - "ssl": [ - "openssl-sys" - ], - "static-curl": [], - "static-ssl": [ - "openssl-sys/vendored" - ], - "upkeep_7_62_0": [], - "windows-static-ssl": [], - "zlib-ng-compat": [ - "libz-sys/zlib-ng", - "static-curl" - ] - }, - "homepage": null, - "id": "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": "curl", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/Cargo.toml", - "name": "curl-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/alexcrichton/curl-rust", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "curl_sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/build.rs", - "test": false - } - ], - "version": "0.4.61+curl-8.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "const-oid", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "der_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "flagset", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "pem-rfc7468", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "time", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "arbitrary": [ - "dep:arbitrary", - "const-oid?/arbitrary", - "std" - ], - "derive": [ - "dep:der_derive" - ], - "flagset": [ - "dep:flagset" - ], - "oid": [ - "dep:const-oid" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "zeroize" - ], - "real": [], - "std": [ - "alloc" - ], - "time": [ - "dep:time" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "asn1", - "crypto", - "itu", - "pkcs" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "der", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/der", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "der", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "datetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/datetime.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set_of", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/set_of.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/derive.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "pem", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/pem.rs", - "test": true - } - ], - "version": "0.7.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "blobby", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "block-buffer", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "const-oid", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crypto-common", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Traits for cryptographic hash functions and message authentication codes", - "documentation": "https://docs.rs/digest", - "edition": "2018", - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-buffer": [ - "dep:block-buffer" - ], - "const-oid": [ - "dep:const-oid" - ], - "core-api": [ - "block-buffer" - ], - "default": [ - "core-api" - ], - "dev": [ - "blobby" - ], - "mac": [ - "subtle" - ], - "oid": [ - "const-oid" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "homepage": null, - "id": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "digest", - "crypto", - "hash" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "digest", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "digest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs", - "test": true - } - ], - "version": "0.10.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Kornel " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [], - "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", - "documentation": "https://docs.rs/dunce", - "edition": "2021", - "features": {}, - "homepage": "https://lib.rs/crates/dunce", - "id": "dunce 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "realpath", - "unc", - "canonicalize", - "windows", - "deunc" - ], - "license": "CC0-1.0 OR MIT-0 OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "dunce", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/dunce", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "dunce", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.4/src/lib.rs", - "test": true - } - ], - "version": "1.0.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "der", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "digest", - "sec1" - ], - "kind": "normal", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rfc6979", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "rand_core" - ], - "kind": "normal", - "name": "signature", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0, <2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm\n(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing\nRFC6979 deterministic signatures as well as support for added entropy\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "elliptic-curve/alloc", - "signature/alloc" - ], - "arithmetic": [ - "elliptic-curve/arithmetic" - ], - "default": [ - "digest" - ], - "der": [ - "dep:der" - ], - "dev": [ - "arithmetic", - "digest", - "elliptic-curve/dev", - "hazmat" - ], - "digest": [ - "dep:digest", - "signature/digest" - ], - "hazmat": [], - "pem": [ - "elliptic-curve/pem", - "pkcs8" - ], - "pkcs8": [ - "digest", - "elliptic-curve/pkcs8", - "der" - ], - "rfc6979": [ - "dep:rfc6979" - ], - "serde": [ - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "sha2": [ - "dep:sha2" - ], - "signing": [ - "arithmetic", - "digest", - "hazmat", - "rfc6979" - ], - "std": [ - "alloc", - "elliptic-curve/std", - "signature/std" - ], - "verifying": [ - "arithmetic", - "digest", - "hazmat" - ] - }, - "homepage": null, - "id": "ecdsa 0.16.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "nist", - "secp256k1", - "signature" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "ecdsa", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/ecdsa", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "ecdsa", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/tests/lib.rs", - "test": true - } - ], - "version": "0.16.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Frank Denis " - ], - "categories": [ - "algorithms", - "cryptography", - "no-std", - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ct-codecs", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ed25519", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "getrandom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ct-codecs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A small, self-contained, wasm-friendly Ed25519 implementation", - "documentation": null, - "edition": "2018", - "features": { - "blind-keys": [], - "ct-codecs": [ - "dep:ct-codecs" - ], - "default": [ - "random", - "std", - "x25519", - "pem" - ], - "disable-signatures": [], - "ed25519": [ - "dep:ed25519" - ], - "getrandom": [ - "dep:getrandom" - ], - "opt_size": [], - "pem": [ - "ct-codecs" - ], - "random": [ - "getrandom" - ], - "self-verify": [], - "std": [], - "traits": [ - "ed25519" - ], - "x25519": [] - }, - "homepage": "https://github.com/jedisct1/rust-ed25519-compact", - "id": "ed25519-compact 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ed25519", - "x25519", - "eddsa", - "signature" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ed25519-compact-2.0.4/Cargo.toml", - "name": "ed25519-compact", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-ed25519-compact", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ed25519-compact", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ed25519-compact-2.0.4/src/lib.rs", - "test": true - } - ], - "version": "2.0.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "homepage": null, - "id": "either 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "data-structure", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "either", - "publish": null, - "readme": "README-crates.io.md", - "repository": "https://github.com/bluss/either", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "either", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.1/src/lib.rs", - "test": true - } - ], - "version": "1.8.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base16ct", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "base64ct", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "rand_core", - "generic-array", - "zeroize" - ], - "kind": "normal", - "name": "crypto-bigint", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ff", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "zeroize" - ], - "kind": "normal", - "name": "generic-array", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "group", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "hex-literal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hkdf", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "pem-rfc7468", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pkcs8", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "subtle", - "zeroize" - ], - "kind": "normal", - "name": "sec1", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha3", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "General purpose Elliptic Curve Cryptography (ECC) support, including types\nand traits for representing various elliptic curve forms, scalars, points,\nand public/secret keys composed thereof.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base16ct/alloc", - "ff?/alloc", - "group?/alloc", - "pkcs8?/alloc", - "sec1?/alloc", - "zeroize/alloc" - ], - "arithmetic": [ - "group" - ], - "bits": [ - "arithmetic", - "ff/bits" - ], - "default": [ - "arithmetic" - ], - "dev": [ - "arithmetic", - "dep:hex-literal", - "pem", - "pkcs8" - ], - "digest": [ - "dep:digest" - ], - "ecdh": [ - "arithmetic", - "digest", - "dep:hkdf" - ], - "ff": [ - "dep:ff" - ], - "group": [ - "dep:group", - "ff" - ], - "hash2curve": [ - "arithmetic", - "digest" - ], - "hazmat": [], - "jwk": [ - "dep:base64ct", - "dep:serde_json", - "alloc", - "serde", - "zeroize/alloc" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "arithmetic", - "pkcs8", - "sec1/pem" - ], - "pkcs8": [ - "dep:pkcs8", - "sec1" - ], - "sec1": [ - "dep:sec1" - ], - "serde": [ - "dep:serdect", - "alloc", - "pkcs8", - "sec1/serde" - ], - "std": [ - "alloc", - "rand_core/std", - "pkcs8?/std", - "sec1?/std" - ], - "voprf": [ - "digest" - ] - }, - "homepage": null, - "id": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "elliptic", - "weierstrass" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "bits", - "ecdh", - "hash2curve", - "jwk", - "pem", - "std", - "voprf" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "elliptic-curve", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/elliptic-curve", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "elliptic-curve", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "pkcs8", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/tests/pkcs8.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "secret_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/tests/secret_key.rs", - "test": true - } - ], - "version": "0.13.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "perf" - ], - "kind": "normal", - "name": "regex", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", - "documentation": null, - "edition": "2021", - "features": { - "auto-color": [ - "dep:is-terminal", - "color" - ], - "color": [ - "dep:termcolor" - ], - "default": [ - "auto-color", - "humantime", - "regex" - ], - "humantime": [ - "dep:humantime" - ], - "regex": [ - "dep:regex" - ] - }, - "homepage": null, - "id": "env_logger 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "logging", - "log", - "logger" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "env_logger", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger/", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "env_logger", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_default_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_default_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "in_tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/in_tests.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "default", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/default.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_logger", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_logger.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "filters_from_code", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/filters_from_code.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "direct_logger", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/direct_logger.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "syslog_friendly_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/syslog_friendly_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "regexp_filter", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/regexp_filter.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "log-in-log", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/log-in-log.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "log_tls_dtors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/log_tls_dtors.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "init-twice-retains-filter", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/init-twice-retains-filter.rs", - "test": true - } - ], - "version": "0.10.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Chris Wong " - ], - "categories": [ - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "errno-dragonfly", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"dragonfly\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cross-platform interface to the `errno` variable.", - "documentation": "https://docs.rs/errno", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "errno 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.3.1/Cargo.toml", - "name": "errno", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Michael Neumann " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Exposes errno functionality to stable Rust on DragonFlyBSD", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dragonfly" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml", - "name": "errno-dragonfly", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mneumann/errno-dragonfly-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno-dragonfly", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs", - "test": false - } - ], - "version": "0.1.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wyhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [ - "js" - ], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [ - "wasm-bindgen" - ], - "kind": "dev", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - } - ], - "description": "A simple and fast random number generator", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "fastrand 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/Cargo.toml", - "name": "fastrand", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "rust_version": "^1.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fastrand", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/tests/smoke.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "char", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/tests/char.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/benches/bench.rs", - "test": false - } - ], - "version": "1.9.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sean Bowe ", - "Jack Grigg " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "byteorder", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "ff_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "i128" - ], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "blake2b_simd", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Library for building and interfacing with finite fields", - "documentation": "https://docs.rs/ff/", - "edition": "2021", - "features": { - "alloc": [], - "bits": [ - "bitvec" - ], - "bitvec": [ - "dep:bitvec" - ], - "byteorder": [ - "dep:byteorder" - ], - "default": [ - "bits", - "std" - ], - "derive": [ - "byteorder", - "ff_derive" - ], - "derive_bits": [ - "bits", - "ff_derive/bits" - ], - "ff_derive": [ - "dep:ff_derive" - ], - "std": [ - "alloc" - ] - }, - "homepage": "https://github.com/zkcrypto/ff", - "id": "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "ff", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/zkcrypto/ff", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "ff", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/tests/derive.rs", - "test": true - } - ], - "version": "0.13.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Fiat Crypto library authors " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Fiat-crypto generated Rust", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/mit-plv/fiat-crypto", - "id": "fiat-crypto 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0 OR BSD-1-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.20/Cargo.toml", - "name": "fiat-crypto", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mit-plv/fiat-crypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fiat-crypto", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.20/src/lib.rs", - "test": true - } - ], - "version": "0.1.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/filetime", - "id": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "timestamp", - "mtime" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.21/Cargo.toml", - "name": "filetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "filetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.21/src/lib.rs", - "test": true - } - ], - "version": "0.2.21" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cloudflare-zlib-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crc32fast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libz-ng-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libz-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "with-alloc" - ], - "kind": "normal", - "name": "miniz_oxide", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "with-alloc" - ], - "kind": "normal", - "name": "miniz_oxide", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", - "uses_default_features": false - } - ], - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", - "documentation": "https://docs.rs/flate2", - "edition": "2018", - "features": { - "any_zlib": [], - "cloudflare-zlib-sys": [ - "dep:cloudflare-zlib-sys" - ], - "cloudflare_zlib": [ - "any_zlib", - "cloudflare-zlib-sys" - ], - "default": [ - "rust_backend" - ], - "libz-ng-sys": [ - "dep:libz-ng-sys" - ], - "libz-sys": [ - "dep:libz-sys" - ], - "miniz-sys": [ - "rust_backend" - ], - "miniz_oxide": [ - "dep:miniz_oxide" - ], - "rust_backend": [ - "miniz_oxide" - ], - "zlib": [ - "any_zlib", - "libz-sys" - ], - "zlib-default": [ - "any_zlib", - "libz-sys/default" - ], - "zlib-ng": [ - "any_zlib", - "libz-ng-sys" - ], - "zlib-ng-compat": [ - "zlib", - "libz-sys/zlib-ng" - ] - }, - "homepage": "https://github.com/rust-lang/flate2-rs", - "id": "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "gzip", - "deflate", - "zlib", - "zlib-ng", - "encoding" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "flate2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/flate2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "flate2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzmultidecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzmultidecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "decompress_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/decompress_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzmultidecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzmultidecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzbuilder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzbuilder.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "compress_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/compress_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zero-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/zero-write.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "gunzip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/gunzip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "early-flush", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/early-flush.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "empty-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/empty-read.rs", - "test": true - } - ], - "version": "1.0.26" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Fowler–Noll–Vo hash function", - "documentation": "https://doc.servo.org/fnv/", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0 / MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/Cargo.toml", - "name": "fnv", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/rust-fnv", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "fnv", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs", - "test": true - } - ], - "version": "1.0.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "foreign-types-shared", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A framework for Rust wrappers over C APIs", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/Cargo.toml", - "name": "foreign-types", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/foreign-types", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "foreign-types", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/src/lib.rs", - "test": true - } - ], - "version": "0.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "An internal crate used by foreign-types", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/Cargo.toml", - "name": "foreign-types-shared", - "publish": null, - "readme": null, - "repository": "https://github.com/sfackler/foreign-types", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "foreign-types-shared", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "percent-encoding", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.1.0/Cargo.toml", - "name": "form_urlencoded", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "form_urlencoded", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.1.0/src/lib.rs", - "test": false - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "kennytm " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Forwards a byte string with ANSI escape code to a termcolor terminal", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "fwdansi 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "windows", - "console", - "terminal", - "color" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/Cargo.toml", - "name": "fwdansi", - "publish": null, - "readme": null, - "repository": "https://github.com/kennytm/fwdansi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "fwdansi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "run-rustc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/examples/run-rustc.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "colors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/examples/colors.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/tests/tests.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "version_check", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generic types implementing functionality of arrays", - "documentation": "http://fizyk20.github.io/generic-array/generic_array/", - "edition": "2015", - "features": { - "more_lengths": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "generic", - "array" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - } - }, - "name": "generic-array", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "generic_array", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/build.rs", - "test": false - } - ], - "version": "0.14.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.62", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.139", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": false - } - ], - "description": "A small cross-platform library for retrieving random data from system source", - "documentation": "https://docs.rs/getrandom", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "custom": [], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-sys": [ - "dep:js-sys" - ], - "rdrand": [], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "libc/rustc-dep-of-std", - "wasi/rustc-dep-of-std" - ], - "std": [], - "test-in-browser": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "homepage": null, - "id": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "custom" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "getrandom", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "getrandom", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "normal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/normal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "rdrand", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/rdrand.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "custom", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/custom.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/benches/buffer.rs", - "test": false - } - ], - "version": "0.2.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [ - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libgit2-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "paste", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "structopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-probe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - } - ], - "description": "Bindings to libgit2 for interoperating with git repositories. This library is\nboth threadsafe and memory safe and allows both reading and writing git\nrepositories.\n", - "documentation": "https://docs.rs/git2", - "edition": "2018", - "features": { - "default": [ - "ssh", - "https", - "ssh_key_from_memory" - ], - "https": [ - "libgit2-sys/https", - "openssl-sys", - "openssl-probe" - ], - "openssl-probe": [ - "dep:openssl-probe" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "ssh": [ - "libgit2-sys/ssh" - ], - "ssh_key_from_memory": [ - "libgit2-sys/ssh_key_from_memory" - ], - "unstable": [], - "vendored-libgit2": [ - "libgit2-sys/vendored" - ], - "vendored-openssl": [ - "openssl-sys/vendored", - "libgit2-sys/vendored-openssl" - ], - "zlib-ng-compat": [ - "libgit2-sys/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "git" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/Cargo.toml", - "name": "git2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "git2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "rev-list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/rev-list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "rev-parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/rev-parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "cat-file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/cat-file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "fetch", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/fetch.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "status", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/status.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "diff", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/diff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ls-remote", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/ls-remote.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "log", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/log.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "tag", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/tag.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "init", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/init.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "pull", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/pull.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "blame", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/blame.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "clone", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/clone.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "add", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/add.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "get_extensions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/get_extensions.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "add_extensions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/add_extensions.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "global_state", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/global_state.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "remove_extensions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/remove_extensions.rs", - "test": true - } - ], - "version": "0.16.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.33", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "git2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "civet", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "conduit", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "conduit-git-http-backend", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Backend for an HTTP transport in libgit2 powered by libcurl.\n\nIntended to be used with the git2 crate.\n", - "documentation": "https://docs.rs/git2-curl", - "edition": "2018", - "features": { - "zlib-ng-compat": [ - "git2/zlib-ng-compat", - "curl/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "git2-curl 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/Cargo.toml", - "name": "git2-curl", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "git2-curl", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/tests/all.rs", - "test": true - } - ], - "version": "0.17.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Support for matching file paths against Unix shell style patterns.\n", - "documentation": "https://docs.rs/glob/0.3.1", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/rust-lang/glob", - "id": "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/Cargo.toml", - "name": "glob", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "glob", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "glob-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/tests/glob-std.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "aho-corasick", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "normal", - "name": "bstr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "perf", - "std" - ], - "kind": "normal", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.104", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", - "documentation": "https://docs.rs/globset", - "edition": "2018", - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd-accel": [] - }, - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "id": "globset 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "regex", - "glob", - "multiple", - "set", - "pattern" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/Cargo.toml", - "name": "globset", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "globset", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/benches/bench.rs", - "test": false - } - ], - "version": "0.4.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sean Bowe ", - "Jack Grigg " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ff", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "memuse", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_xorshift", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Elliptic curve group traits and utilities", - "documentation": "https://docs.rs/group/", - "edition": "2021", - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "memuse": [ - "dep:memuse" - ], - "rand": [ - "dep:rand" - ], - "rand_xorshift": [ - "dep:rand_xorshift" - ], - "tests": [ - "alloc", - "rand", - "rand_xorshift" - ], - "wnaf-memuse": [ - "alloc", - "memuse" - ] - }, - "homepage": "https://github.com/zkcrypto/group", - "id": "group 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/group-0.13.0/Cargo.toml", - "name": "group", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/zkcrypto/group", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "group", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/group-0.13.0/src/lib.rs", - "test": true - } - ], - "version": "0.13.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ahash", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bumpalo", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust port of Google's SwissTable hash map", - "documentation": null, - "edition": "2021", - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "name": "hashbrown", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "rust_version": "^1.56.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hashbrown", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "rayon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "hasher", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "insert_unique_unchecked", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs", - "test": false - } - ], - "version": "0.12.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Hermit system calls definitions.", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/Cargo.toml", - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/rusty-hermit", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "KokaKiwi " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Encoding and decoding data into/from hexadecimal representation.", - "documentation": "https://docs.rs/hex/", - "edition": "2015", - "features": { - "benchmarks": [] - }, - "homepage": null, - "id": "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/Cargo.toml", - "name": "hex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "hex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/src/lib.rs", - "test": true - } - ], - "version": "0.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "KokaKiwi " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "faster-hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustc-hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Encoding and decoding data into/from hexadecimal representation.", - "documentation": "https://docs.rs/hex/", - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "no_std", - "hex" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "version-number", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/tests/version-number.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "hex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/benches/hex.rs", - "test": false - } - ], - "version": "0.4.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "hmac", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "blobby", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha-1", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)", - "documentation": null, - "edition": "2018", - "features": { - "std": [ - "hmac/std" - ] - }, - "homepage": "https://github.com/RustCrypto/KDFs/", - "id": "hkdf 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "HKDF", - "KDF" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hkdf", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/KDFs/", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hkdf", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/benches/mod.rs", - "test": false - } - ], - "version": "0.12.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "mac" - ], - "kind": "normal", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "md-5", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha-1", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "streebog", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "documentation": "https://docs.rs/hmac", - "edition": "2018", - "features": { - "reset": [], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "mac", - "hmac", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hmac", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/MACs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hmac", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/tests/mod.rs", - "test": true - } - ], - "version": "0.12.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Brian Anderson " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_UI_Shell" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Shared definitions of home directories.", - "documentation": "https://docs.rs/home", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "home 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.5/Cargo.toml", - "name": "home", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "home", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.5/src/lib.rs", - "test": true - } - ], - "version": "0.5.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "authentication", - "parser-implementations", - "web-programming::http-client" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base64", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.21.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "http", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "md-5", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "HTTP authentication: parse challenge lists, respond to Basic and Digest challenges. Likely to be extended with server support and additional auth schemes.", - "documentation": null, - "edition": "2018", - "features": { - "base64": [ - "dep:base64" - ], - "basic-scheme": [ - "base64" - ], - "default": [ - "basic-scheme", - "digest-scheme" - ], - "digest": [ - "dep:digest" - ], - "digest-scheme": [ - "digest", - "hex", - "md-5", - "rand", - "sha2" - ], - "hex": [ - "dep:hex" - ], - "http": [ - "dep:http" - ], - "log": [ - "dep:log" - ], - "md-5": [ - "dep:md-5" - ], - "rand": [ - "dep:rand" - ], - "sha2": [ - "dep:sha2" - ], - "trace": [ - "log" - ] - }, - "homepage": null, - "id": "http-auth 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "http", - "authentication", - "digest", - "basic" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "http-auth", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/scottlamb/http-auth", - "rust_version": "^1.57.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "http-auth", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "reqwest", - "required-features": [ - "http" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/examples/reqwest.rs", - "test": false - } - ], - "version": "0.1.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "chrono", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/tailhook/humantime", - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml", - "name": "humantime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_format.rs", - "test": false - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "unicode-bidi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-normalization", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "assert_matches", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tester", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/Cargo.toml", - "name": "idna", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "idna", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/unit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/benches/all.rs", - "test": false - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "globset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "thread_local", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-channel", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", - "documentation": "https://docs.rs/ignore", - "edition": "2018", - "features": { - "simd-accel": [ - "globset/simd-accel" - ] - }, - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "id": "ignore 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "glob", - "ignore", - "gitignore", - "pattern", - "file" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/Cargo.toml", - "name": "ignore", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ignore", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "walk", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/examples/walk.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "gitignore_matched_path_or_any_parents_tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/tests/gitignore_matched_path_or_any_parents_tests.rs", - "test": true - } - ], - "version": "0.4.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitmaps", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "proptest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quickcheck", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_xoshiro", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "refpool", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sized-chunks", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "metrohash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest-derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "version_check", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Immutable collection datatypes (the fast but not thread safe version)", - "documentation": "http://immutable.rs/", - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "debug": [], - "pool": [ - "refpool", - "sized-chunks/refpool" - ], - "proptest": [ - "dep:proptest" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "refpool": [ - "dep:refpool" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": "http://immutable.rs/", - "id": "im-rc 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "immutable", - "persistent", - "hamt", - "b-tree", - "rrb-tree" - ], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "im-rc", - "publish": null, - "readme": "../../README.md", - "repository": "https://github.com/bodil/im-rs", - "rust_version": "^1.46.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "im-rc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/./src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/./build.rs", - "test": false - } - ], - "version": "15.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "raw" - ], - "kind": "normal", - "name": "hashbrown", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quickcheck", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-rayon", - "optional": true, - "path": null, - "registry": null, - "rename": "rustc-rayon", - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fxhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A hash table with consistent order and fast iteration.", - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "homepage": null, - "id": "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hashmap", - "no_std" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "indexmap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "indexmap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "macros_full_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/macros_full_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "quick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "equivalent_trait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/equivalent_trait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "faststring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/benches/faststring.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/build.rs", - "test": false - } - ], - "version": "1.9.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "sebcrozet " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - } - ], - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "documentation": null, - "edition": "2018", - "features": { - "inaccurate": [], - "js-sys": [ - "dep:js-sys" - ], - "now": [], - "stdweb": [ - "dep:stdweb" - ], - "wasm-bindgen": [ - "js-sys", - "wasm-bindgen_rs", - "web-sys" - ], - "wasm-bindgen_rs": [ - "dep:wasm-bindgen_rs" - ], - "web-sys": [ - "dep:web-sys" - ] - }, - "homepage": null, - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "wasm" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml", - "name": "instant", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "instant", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs", - "test": true - } - ], - "version": "0.1.12" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "os", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "fs-err", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "async-std", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "net", - "os-ext" - ], - "kind": "normal", - "name": "mio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io_safety" - ], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "socket2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io-std", - "fs", - "net", - "process" - ], - "kind": "normal", - "name": "tokio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.96", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_System_IO", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A low-level I/O ownership and borrowing library", - "documentation": null, - "edition": "2018", - "features": { - "async-std": [ - "dep:async-std" - ], - "close": [ - "libc", - "hermit-abi", - "windows-sys" - ], - "default": [ - "close" - ], - "fs-err": [ - "dep:fs-err" - ], - "hermit-abi": [ - "dep:hermit-abi" - ], - "libc": [ - "dep:libc" - ], - "mio": [ - "dep:mio" - ], - "os_pipe": [ - "dep:os_pipe" - ], - "socket2": [ - "dep:socket2" - ], - "tokio": [ - "dep:tokio" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "homepage": null, - "id": "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "io" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/Cargo.toml", - "name": "io-lifetimes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/io-lifetimes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "io-lifetimes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/build.rs", - "test": false - } - ], - "version": "1.0.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "atty", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.110", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "termios" - ], - "kind": "normal", - "name": "rustix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.37.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Test whether a given stream is a terminal", - "documentation": "http://docs.rs/is-terminal", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.7/Cargo.toml", - "name": "is-terminal", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "is-terminal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.7/src/lib.rs", - "test": true - } - ], - "version": "0.4.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "either", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "paste", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "permutohedron", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "homepage": null, - "id": "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iterator", - "data-structure", - "zip", - "product", - "group-by" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "name": "itertools", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "itertools", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "iris", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/examples/iris.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_std.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "adaptors_no_collect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/adaptors_no_collect.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "merge_join", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/merge_join.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "flatten_ok", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/flatten_ok.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "peeking_take_while", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/peeking_take_while.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "macros_hygiene", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/macros_hygiene.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tuples", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/tuples.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "quick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "specializations", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/specializations.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_core.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/zip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tuple_combinations", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuple_combinations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tuples", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuples.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "fold_specialization", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/fold_specialization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "combinations_with_replacement", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations_with_replacement.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tree_fold1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tree_fold1.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/bench1.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "combinations", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "powerset", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/powerset.rs", - "test": false - } - ], - "version": "0.10.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "no-panic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast integer primitive to string conversion", - "documentation": "https://docs.rs/itoa", - "edition": "2018", - "features": { - "no-panic": [ - "dep:no-panic" - ] - }, - "homepage": null, - "id": "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "integer" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "itoa", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/itoa", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "itoa", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/benches/bench.rs", - "test": false - } - ], - "version": "1.0.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tokio-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tokio-process", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.50", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "An implementation of the GNU make jobserver for Rust\n", - "documentation": "https://docs.rs/jobserver", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/jobserver-rs", - "id": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/Cargo.toml", - "name": "jobserver", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/jobserver-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "jobserver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "client", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/client.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "server", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/server.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "client-of-myself", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/client-of-myself.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "make-as-a-client", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/make-as-a-client.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "helper", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/helper.rs", - "test": true - } - ], - "version": "0.1.26" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.3.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "Headers", - "Response", - "ResponseInit" - ], - "kind": "dev", - "name": "web-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", - "documentation": "https://docs.rs/js-sys", - "edition": "2018", - "features": {}, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "js-sys 0.3.61 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/Cargo.toml", - "name": "js-sys", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "js-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/tests/wasm/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "headless", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/tests/headless.rs", - "test": true - } - ], - "version": "0.3.61" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Marvin Löbel " - ], - "categories": [ - "no-std", - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "spin", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro for declaring lazily evaluated statics in Rust.", - "documentation": "https://docs.rs/lazy_static", - "edition": "2015", - "features": { - "spin": [ - "dep:spin" - ], - "spin_no_std": [ - "spin" - ] - }, - "homepage": null, - "id": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macro", - "lazy", - "static" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/Cargo.toml", - "name": "lazy_static", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "lazy_static", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "no_std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/no_std.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/test.rs", - "test": true - } - ], - "version": "1.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Nikita Pekin " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clippy", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library providing a lazily filled Cell struct", - "documentation": "http://indiv0.github.io/lazycell/lazycell/", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "nightly": [], - "nightly-testing": [ - "clippy", - "nightly" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "lazycell 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazycell", - "lazy", - "cell", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/Cargo.toml", - "name": "lazycell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/indiv0/lazycell", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "lazycell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/src/lib.rs", - "test": true - } - ], - "version": "1.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Raw FFI bindings to platform libraries like libc.\n", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/libc", - "id": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "const-extern-fn", - "extra_traits" - ] - } - } - }, - "name": "libc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "const_fn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/tests/const_fn.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/build.rs", - "test": false - } - ], - "version": "0.2.142" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libssh2-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": "normal", - "name": "libz-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "parallel" - ], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libgit2 library", - "documentation": null, - "edition": "2018", - "features": { - "https": [ - "openssl-sys" - ], - "libssh2-sys": [ - "dep:libssh2-sys" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "ssh": [ - "libssh2-sys" - ], - "ssh_key_from_memory": [], - "vendored": [], - "vendored-openssl": [ - "openssl-sys/vendored" - ], - "zlib-ng-compat": [ - "libz-sys/zlib-ng", - "libssh2-sys?/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "git2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/Cargo.toml", - "name": "libgit2-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "libgit2_sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/build.rs", - "test": false - } - ], - "version": "0.14.1+1.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.24", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "FFI bindings for libnghttp2 (nghttp2)\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/nghttp2-rs", - "id": "libnghttp2-sys 0.1.7+1.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "nghttp2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/Cargo.toml", - "name": "libnghttp2-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/nghttp2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libnghttp2-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/examples/smoke.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/build.rs", - "test": false - } - ], - "version": "0.1.7+1.45.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Wez Furlong ", - "Matteo Bigoi " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": "normal", - "name": "libz-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.35", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.35", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libssh2 library", - "documentation": "https://docs.rs/libssh2-sys", - "edition": "2015", - "features": { - "openssl-on-win32": [ - "openssl-sys" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "vendored-openssl": [ - "openssl-sys/vendored" - ], - "zlib-ng-compat": [ - "libz-sys/zlib-ng" - ] - }, - "homepage": null, - "id": "libssh2-sys 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "ssh2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/Cargo.toml", - "name": "libssh2-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/alexcrichton/ssh2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libssh2_sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/build.rs", - "test": false - } - ], - "version": "0.2.23" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cmake", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.44", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "Low-level bindings to the system libz library (also known as zlib).", - "documentation": null, - "edition": "2018", - "features": { - "asm": [], - "cmake": [ - "dep:cmake" - ], - "default": [ - "libc", - "stock-zlib" - ], - "libc": [ - "dep:libc" - ], - "static": [], - "stock-zlib": [], - "zlib-ng": [ - "libc", - "cmake" - ] - }, - "homepage": null, - "id": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "zlib", - "zlib-ng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "z", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/Cargo.toml", - "name": "libz-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libz-sys", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "libz-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/build.rs", - "test": false - } - ], - "version": "1.1.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generated bindings for Linux's userspace API", - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "errno": [], - "general": [], - "ioctl": [], - "netlink": [], - "no_std": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [] - }, - "homepage": null, - "id": "linux-raw-sys 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.3.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "ioctl", - "netlink" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "name": "linux-raw-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "linux-raw-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.3.7/src/lib.rs", - "test": true - } - ], - "version": "0.3.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "development-tools::debugging" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "sval", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "value-bag", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "sval", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "test" - ], - "kind": "dev", - "name": "value-bag", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A lightweight logging facade for Rust\n", - "documentation": "https://docs.rs/log", - "edition": "2015", - "features": { - "kv_unstable": [ - "value-bag" - ], - "kv_unstable_serde": [ - "kv_unstable_std", - "value-bag/serde", - "serde" - ], - "kv_unstable_std": [ - "std", - "kv_unstable", - "value-bag/error" - ], - "kv_unstable_sval": [ - "kv_unstable", - "value-bag/sval", - "sval" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "serde": [ - "dep:serde" - ], - "std": [], - "sval": [ - "dep:sval" - ], - "value-bag": [ - "dep:value-bag" - ] - }, - "homepage": null, - "id": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "logging" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "kv_unstable_std", - "kv_unstable_sval", - "kv_unstable_serde" - ] - } - } - }, - "name": "log", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/log", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "log", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "filters", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/filters.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/macros.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "value", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/benches/value.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs", - "test": false - } - ], - "version": "0.4.17" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Safe interface to memchr.", - "documentation": "https://docs.rs/memchr/", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [ - "dep:libc" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/BurntSushi/memchr", - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memchr", - "char", - "scan", - "strchr", - "string" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml", - "name": "memchr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "memchr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs", - "test": false - } - ], - "version": "2.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Frommi ", - "oyvindln " - ], - "categories": [ - "compression" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "adler", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "simd-adler32", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "documentation": "https://docs.rs/miniz_oxide", - "edition": "2018", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "with-alloc" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "adler/rustc-dep-of-std" - ], - "simd": [ - "simd-adler32" - ], - "simd-adler32": [ - "dep:simd-adler32" - ], - "std": [], - "with-alloc": [] - }, - "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "id": "miniz_oxide 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "zlib", - "miniz", - "deflate", - "encoding" - ], - "license": "MIT OR Zlib OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.7.1/Cargo.toml", - "name": "miniz_oxide", - "publish": null, - "readme": "Readme.md", - "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "miniz_oxide", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.7.1/src/lib.rs", - "test": true - } - ], - "version": "0.7.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_Threading", - "Win32_System_WindowsProgramming" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "socket2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A zero overhead I/O library for Windows, focusing on IOCP and async I/O\nabstractions.\n", - "documentation": "https://docs.rs/miow", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/yoshuawuyts/miow", - "id": "miow 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iocp", - "windows", - "io", - "overlapped" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "miow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/yoshuawuyts/miow", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "miow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.5.0/src/lib.rs", - "test": true - } - ], - "version": "0.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Richard Dodd " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Takes an iterator over chars and returns a new iterator with all line endings (\\r, \\n, or \\r\\n) as \\n", - "documentation": "https://derekdreery.github.io/normalize-line-endings/normalize_line_endings/index.html", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chars", - "line", - "ending", - "normalize" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/Cargo.toml", - "name": "normalize-line-endings", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/derekdreery/normalize-line-endings", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "normalize-line-endings", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/src/lib.rs", - "test": true - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libm", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Numeric traits for generic mathematics", - "documentation": "https://docs.rs/num-traits", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "i128": [], - "libm": [ - "dep:libm" - ], - "std": [] - }, - "homepage": "https://github.com/rust-num/num-traits", - "id": "num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "mathematics", - "numerics" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "name": "num-traits", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-num/num-traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "num-traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "cast", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/tests/cast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs", - "test": false - } - ], - "version": "0.2.15" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "atomic-polyfill", - "optional": true, - "path": null, - "registry": null, - "rename": "atomic_polyfill", - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "critical-section", - "optional": true, - "path": null, - "registry": null, - "rename": "critical_section", - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "parking_lot_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "critical-section", - "optional": false, - "path": null, - "registry": null, - "rename": "critical_section", - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Single assignment cells and lazy values.", - "documentation": "https://docs.rs/once_cell", - "edition": "2021", - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "critical-section" - ], - "atomic_polyfill": [ - "dep:atomic_polyfill" - ], - "critical-section": [ - "critical_section", - "atomic_polyfill" - ], - "critical_section": [ - "dep:critical_section" - ], - "default": [ - "std" - ], - "parking_lot": [ - "parking_lot_core" - ], - "parking_lot_core": [ - "dep:parking_lot_core" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "homepage": null, - "id": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazy", - "static" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "once_cell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "once_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench_acquire", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench_acquire.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench_vs_lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench_vs_lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "reentrant_init_deadlocks", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/reentrant_init_deadlocks.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "regex", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/regex.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "test_synchronization", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/test_synchronization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "it", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/tests/it.rs", - "test": true - } - ], - "version": "1.17.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Brian Bowman " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bstr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"linux\")", - "uses_default_features": true - }, - { - "features": [ - "shellapi" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Open a file or link using the system default program.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "opener 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "open", - "default", - "launcher", - "browser" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/Cargo.toml", - "name": "opener", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Seeker14491/opener", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "opener", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "version-numbers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/tests/version-numbers.rs", - "test": true - } - ], - "version": "0.5.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [ - "cryptography", - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": "ffi", - "req": "^0.9.87", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "foreign-types", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "OpenSSL bindings", - "documentation": null, - "edition": "2018", - "features": { - "bindgen": [ - "ffi/bindgen" - ], - "default": [], - "unstable_boringssl": [ - "ffi/unstable_boringssl" - ], - "v101": [], - "v102": [], - "v110": [], - "v111": [], - "vendored": [ - "ffi/vendored" - ] - }, - "homepage": null, - "id": "openssl 0.10.52 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "tls", - "ssl", - "dtls" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/Cargo.toml", - "name": "openssl", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "openssl", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "mk_certs", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/examples/mk_certs.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/build.rs", - "test": false - } - ], - "version": "0.10.52" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Internal macros used by the openssl crate.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "openssl-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-macros-0.1.1/Cargo.toml", - "name": "openssl-macros", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "openssl-macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-macros-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/openssl-probe", - "id": "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/Cargo.toml", - "name": "openssl-probe", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/openssl-probe", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "openssl-probe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "probe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/examples/probe.rs", - "test": false - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Steven Fackler " - ], - "categories": [ - "cryptography", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "experimental" - ], - "kind": "build", - "name": "bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "openssl-src", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^111", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "FFI bindings to OpenSSL", - "documentation": null, - "edition": "2018", - "features": { - "bindgen": [ - "dep:bindgen" - ], - "bssl-sys": [ - "dep:bssl-sys" - ], - "openssl-src": [ - "dep:openssl-src" - ], - "unstable_boringssl": [ - "bssl-sys" - ], - "vendored": [ - "openssl-src" - ] - }, - "homepage": null, - "id": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": "openssl", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/Cargo.toml", - "metadata": { - "pkg-config": { - "openssl": "1.0.1" - } - }, - "name": "openssl-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "openssl-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-main", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/build/main.rs", - "test": false - } - ], - "version": "0.9.87" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jonathan Reem ", - "Matt Brubeck " - ], - "categories": [ - "science", - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "num-traits", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "proptest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "size_32" - ], - "kind": "normal", - "name": "rkyv", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "schemars", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Wrappers for total ordering on floats", - "documentation": null, - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std" - ], - "proptest": [ - "dep:proptest" - ], - "rand": [ - "dep:rand" - ], - "randtest": [ - "rand/std", - "rand/std_rng" - ], - "rkyv": [ - "dep:rkyv" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "num-traits/std" - ] - }, - "homepage": null, - "id": "ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "no_std", - "ord", - "f64", - "f32", - "sort" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/Cargo.toml", - "name": "ordered-float", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/reem/rust-ordered-float", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ordered-float", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/tests/test.rs", - "test": true - } - ], - "version": "2.10.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "brycx " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ct-codecs", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "fiat-crypto", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "getrandom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.124", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck_macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Usable, easy and safe pure-Rust crypto", - "documentation": "https://docs.rs/orion", - "edition": "2021", - "features": { - "alloc": [], - "ct-codecs": [ - "dep:ct-codecs" - ], - "default": [ - "safe_api" - ], - "getrandom": [ - "dep:getrandom" - ], - "safe_api": [ - "getrandom", - "ct-codecs" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "orion 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "aead", - "hash", - "mac" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "orion", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/orion-rs/orion", - "rust_version": "^1.59", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "orion", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/benches/bench.rs", - "test": false - } - ], - "version": "0.17.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jan Schulte ", - "Stanislav Tkach " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "minwindef", - "ntdef", - "ntstatus", - "sysinfoapi", - "winnt", - "winuser", - "libloaderapi", - "processthreadsapi", - "winerror", - "winreg" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Detect the operating system type and version.", - "documentation": "https://docs.rs/os_info", - "edition": "2018", - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/stanislav-tkach/os_info", - "id": "os_info 3.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "os", - "os_type", - "os_version", - "os_info" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/Cargo.toml", - "name": "os_info", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/stanislav-tkach/os_info", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "os_info", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "print_version", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/examples/print_version.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/tests/basic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "md_doc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/tests/md_doc.rs", - "test": true - } - ], - "version": "3.7.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers", - "Frank Denis " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "der" - ], - "kind": "normal", - "name": "ecdsa", - "optional": true, - "path": null, - "registry": null, - "rename": "ecdsa-core", - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "hazmat", - "sec1" - ], - "kind": "normal", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "hex-literal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "primeorder", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "blobby", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "ecdsa", - "optional": false, - "path": null, - "registry": null, - "rename": "ecdsa-core", - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "getrandom" - ], - "kind": "dev", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of the NIST P-384 (a.k.a. secp384r1) elliptic curve\nas defined in SP 800-186 with support for ECDH, ECDSA signing/verification,\nand general purpose curve arithmetic support.\n", - "documentation": "https://docs.rs/p384", - "edition": "2021", - "features": { - "alloc": [ - "ecdsa-core?/alloc", - "elliptic-curve/alloc" - ], - "arithmetic": [ - "elliptic-curve/arithmetic", - "elliptic-curve/digest" - ], - "bits": [ - "arithmetic", - "elliptic-curve/bits" - ], - "default": [ - "arithmetic", - "ecdh", - "ecdsa", - "pem", - "std" - ], - "digest": [ - "ecdsa-core/digest", - "ecdsa-core/hazmat" - ], - "ecdh": [ - "arithmetic", - "elliptic-curve/ecdh" - ], - "ecdsa": [ - "arithmetic", - "ecdsa-core/signing", - "ecdsa-core/verifying", - "sha384" - ], - "ecdsa-core": [ - "dep:ecdsa-core" - ], - "expose-field": [ - "arithmetic" - ], - "hash2curve": [ - "arithmetic", - "elliptic-curve/hash2curve" - ], - "hex-literal": [ - "dep:hex-literal" - ], - "jwk": [ - "elliptic-curve/jwk" - ], - "pem": [ - "elliptic-curve/pem", - "ecdsa-core/pem", - "pkcs8" - ], - "pkcs8": [ - "ecdsa-core/pkcs8", - "elliptic-curve/pkcs8" - ], - "serde": [ - "ecdsa-core/serde", - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "sha2": [ - "dep:sha2" - ], - "sha384": [ - "digest", - "sha2" - ], - "std": [ - "alloc", - "ecdsa-core?/std", - "elliptic-curve/std" - ], - "test-vectors": [ - "hex-literal" - ], - "voprf": [ - "elliptic-curve/voprf", - "sha2" - ] - }, - "homepage": null, - "id": "p384 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "nist", - "secp384r1" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "p384", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/elliptic-curves/tree/master/p384", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "p384", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "projective", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/tests/projective.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "affine", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/tests/affine.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "field", - "required-features": [ - "expose-field" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/benches/field.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "scalar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/benches/scalar.rs", - "test": false - } - ], - "version": "0.13.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "brycx " - ], - "categories": [ - "cryptography", - "authentication" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ct-codecs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "random" - ], - "kind": "normal", - "name": "ed25519-compact", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "js" - ], - "kind": "normal", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "orion", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.17.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "p384", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "getrandom" - ], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "regex", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": "normal", - "name": "time", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "PASETO: Platform-Agnostic Security Tokens (in Rust)", - "documentation": "https://docs.rs/pasetors", - "edition": "2018", - "features": { - "default": [ - "std", - "v4", - "paserk" - ], - "ed25519-compact": [ - "dep:ed25519-compact" - ], - "orion": [ - "dep:orion" - ], - "p384": [ - "dep:p384" - ], - "paserk": [ - "orion" - ], - "rand_core": [ - "dep:rand_core" - ], - "regex": [ - "dep:regex" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "serde_json", - "time", - "regex" - ], - "time": [ - "dep:time" - ], - "v2": [ - "orion", - "ed25519-compact" - ], - "v3": [ - "rand_core", - "p384", - "sha2" - ], - "v4": [ - "orion", - "ed25519-compact" - ] - }, - "homepage": null, - "id": "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "token", - "paseto", - "authentication" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pasetors-0.6.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pasetors", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/brycx/pasetors", - "rust_version": "^1.65.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "pasetors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pasetors-0.6.6/src/lib.rs", - "test": true - } - ], - "version": "0.6.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "camino", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Library for diffing paths to obtain relative paths", - "documentation": "https://docs.rs/pathdiff/", - "edition": "2018", - "features": { - "camino": [ - "dep:camino" - ] - }, - "homepage": null, - "id": "pathdiff 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "path", - "relative" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pathdiff-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "pathdiff", - "publish": null, - "readme": null, - "repository": "https://github.com/Manishearth/pathdiff", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "pathdiff", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pathdiff-0.2.1/src/lib.rs", - "test": true - } - ], - "version": "0.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base64ct", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS Structures, implementing a\nstrict subset of the original Privacy-Enhanced Mail encoding intended\nspecifically for use with cryptographic keys, certificates, and other messages.\nProvides a no_std-friendly, constant-time implementation suitable for use with\ncryptographic private keys.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base64ct/alloc" - ], - "std": [ - "alloc", - "base64ct/std" - ] - }, - "homepage": null, - "id": "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "pem", - "pkcs", - "rsa" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pem-rfc7468", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pem-rfc7468", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "pem-rfc7468", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/tests/decode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/tests/encode.rs", - "test": true - } - ], - "version": "0.7.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Percent encoding and decoding", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "alloc" - ] - }, - "homepage": null, - "id": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/Cargo.toml", - "name": "percent-encoding", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "percent-encoding", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/src/lib.rs", - "test": true - } - ], - "version": "2.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "der", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pkcs5", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "spki", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", - "documentation": null, - "edition": "2021", - "features": { - "3des": [ - "encryption", - "pkcs5/3des" - ], - "alloc": [ - "der/alloc", - "der/zeroize", - "spki/alloc" - ], - "des-insecure": [ - "encryption", - "pkcs5/des-insecure" - ], - "encryption": [ - "alloc", - "pkcs5/alloc", - "pkcs5/pbes2", - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "pem": [ - "alloc", - "der/pem", - "spki/pem" - ], - "pkcs5": [ - "dep:pkcs5" - ], - "rand_core": [ - "dep:rand_core" - ], - "sha1-insecure": [ - "encryption", - "pkcs5/sha1-insecure" - ], - "std": [ - "alloc", - "der/std", - "spki/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "homepage": null, - "id": "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "pkcs", - "private" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pkcs8", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "pkcs8", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encrypted_private_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/encrypted_private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "private_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/traits.rs", - "test": true - } - ], - "version": "0.10.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", - "documentation": "https://docs.rs/pkg-config", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/Cargo.toml", - "name": "pkg-config", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/pkg-config-rs", - "rust_version": "^1.30", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "pkg-config", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/tests/test.rs", - "test": true - } - ], - "version": "0.3.27" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "arithmetic", - "sec1" - ], - "kind": "normal", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Pure Rust implementation of complete addition formulas for prime order elliptic\ncurves (Renes-Costello-Batina 2015). Generic over field elements and curve\nequation coefficients\n", - "documentation": "https://docs.rs/primeorder", - "edition": "2021", - "features": { - "dev": [], - "serde": [ - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "std": [ - "elliptic-curve/std" - ] - }, - "homepage": null, - "id": "primeorder 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/primeorder-0.13.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "primeorder", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "primeorder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/primeorder-0.13.1/src/lib.rs", - "test": true - } - ], - "version": "0.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "documentation": "https://docs.rs/proc-macro2", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "homepage": null, - "id": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "name": "proc-macro2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "proc-macro2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "comments", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/comments.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "marker", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/marker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "features", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/features.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/build.rs", - "test": false - } - ], - "version": "1.0.56" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.52", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.66", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Quasi-quoting macro quote!(...)", - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "homepage": null, - "id": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "quote", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "quote", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/build.rs", - "test": false - } - ], - "version": "1.0.26" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "getrandom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Core random number generator traits and tools for implementation.\n", - "documentation": "https://docs.rs/rand_core", - "edition": "2018", - "features": { - "alloc": [], - "getrandom": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "std": [ - "alloc", - "getrandom", - "getrandom/std" - ] - }, - "homepage": "https://rust-random.github.io/book", - "id": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "random", - "rng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "all-features": true - } - }, - "name": "rand_core", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rand_core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs", - "test": true - } - ], - "version": "0.6.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Xoshiro, xoroshiro and splitmix64 random number generators", - "documentation": "https://docs.rs/rand_xoshiro", - "edition": "2018", - "features": { - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ] - }, - "homepage": "https://rust-random.github.io/book", - "id": "rand_xoshiro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "random", - "rng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/Cargo.toml", - "name": "rand_xoshiro", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/rngs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rand_xoshiro", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/tests/serde.rs", - "test": true - } - ], - "version": "0.6.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml", - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs", - "test": true - } - ], - "version": "0.2.16" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": { - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "bitflags/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "redox_syscall 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.3.5/Cargo.toml", - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.3.5/src/lib.rs", - "test": true - } - ], - "version": "0.3.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "aho-corasick", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex-syntax", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "getrandom", - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", - "documentation": "https://docs.rs/regex", - "edition": "2021", - "features": { - "aho-corasick": [ - "dep:aho-corasick" - ], - "default": [ - "std", - "perf", - "unicode", - "regex-syntax/default" - ], - "memchr": [ - "dep:memchr" - ], - "pattern": [], - "perf": [ - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal" - ], - "perf-cache": [], - "perf-dfa": [], - "perf-inline": [], - "perf-literal": [ - "aho-corasick", - "memchr" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "regex-syntax/unicode" - ], - "unicode-age": [ - "regex-syntax/unicode-age" - ], - "unicode-bool": [ - "regex-syntax/unicode-bool" - ], - "unicode-case": [ - "regex-syntax/unicode-case" - ], - "unicode-gencat": [ - "regex-syntax/unicode-gencat" - ], - "unicode-perl": [ - "regex-syntax/unicode-perl" - ], - "unicode-script": [ - "regex-syntax/unicode-script" - ], - "unicode-segment": [ - "regex-syntax/unicode-segment" - ], - "unstable": [ - "pattern" - ], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/regex", - "id": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/Cargo.toml", - "name": "regex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "regex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-cheat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-cheat.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-replace", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-replace.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-single-cheat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-single-cheat.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-single", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-single.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-bytes.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "default", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_default.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "default-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_default_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa-utf8bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa_utf8bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack-utf8bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack_utf8bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "crates-regex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_crates_regex.rs", - "test": true - } - ], - "version": "1.8.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "fst", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex-syntax", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "bstr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_bytes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Automata construction and matching using regular expressions.", - "documentation": "https://docs.rs/regex-automata", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "fst": [ - "dep:fst" - ], - "regex-syntax": [ - "dep:regex-syntax" - ], - "std": [ - "regex-syntax" - ], - "transducer": [ - "std", - "fst" - ] - }, - "homepage": "https://github.com/BurntSushi/regex-automata", - "id": "regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/Cargo.toml", - "name": "regex-automata", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/regex-automata", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "regex-automata", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "default", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/tests/tests.rs", - "test": true - } - ], - "version": "0.1.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "A regular expression parser.", - "documentation": "https://docs.rs/regex-syntax", - "edition": "2021", - "features": { - "default": [ - "std", - "unicode" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "unicode-age": [], - "unicode-bool": [], - "unicode-case": [], - "unicode-gencat": [], - "unicode-perl": [], - "unicode-script": [], - "unicode-segment": [] - }, - "homepage": "https://github.com/rust-lang/regex", - "id": "regex-syntax 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "regex-syntax", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "regex-syntax", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/benches/bench.rs", - "test": false - } - ], - "version": "0.7.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "reset" - ], - "kind": "normal", - "name": "hmac", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of RFC6979: Deterministic Usage of the\nDigital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)\n", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "rfc6979 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dsa", - "ecdsa", - "signature" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/Cargo.toml", - "name": "rfc6979", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/rfc6979", - "rust_version": "^1.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "rfc6979", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/tests/lib.rs", - "test": true - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Hack for the compiler's own build system\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "rustc-workspace-hack 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-workspace-hack-1.0.0/Cargo.toml", - "name": "rustc-workspace-hack", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "rustc-workspace-hack", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-workspace-hack-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Pascal Hertleif ", - "Oliver Schneider " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "duct", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "env_logger", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0-rc.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "similar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Automatically apply the suggestions made by rustc", - "documentation": "https://docs.rs/rustfix", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rustfix 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustfix-0.6.1/Cargo.toml", - "name": "rustfix", - "publish": null, - "readme": "Readme.md", - "repository": "https://github.com/rust-lang-nursery/rustfix", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustfix", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustfix-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "normal", - "name": "io-lifetimes", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "dev", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "memoffset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serial_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "general", - "ioctl", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": true, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "general", - "errno", - "ioctl", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": false - }, - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ctor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls", - "documentation": "https://docs.rs/rustix", - "edition": "2018", - "features": { - "all-apis": [ - "fs", - "io_uring", - "mm", - "net", - "param", - "process", - "procfs", - "rand", - "runtime", - "termios", - "thread", - "time" - ], - "all-impls": [ - "os_pipe", - "fs-err" - ], - "alloc": [ - "dep:alloc" - ], - "cc": [ - "dep:cc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "fs": [], - "fs-err": [ - "io-lifetimes/fs-err" - ], - "io-lifetimes": [ - "dep:io-lifetimes" - ], - "io_uring": [ - "fs", - "net" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_latest": [ - "linux_4_11" - ], - "mm": [], - "net": [], - "once_cell": [ - "dep:once_cell" - ], - "os_pipe": [ - "io-lifetimes/os_pipe" - ], - "param": [ - "fs" - ], - "process": [], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "rand": [], - "runtime": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std" - ], - "std": [ - "io-lifetimes" - ], - "termios": [], - "thread": [], - "time": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [ - "libc" - ] - }, - "homepage": null, - "id": "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-illumos", - "x86_64-unknown-redox", - "x86_64-unknown-haiku", - "wasm32-unknown-emscripten", - "wasm32-wasi" - ] - } - } - }, - "name": "rustix", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustix", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/benches/mod.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/build.rs", - "test": false - } - ], - "version": "0.37.19" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "no-panic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast floating point to string conversion", - "documentation": "https://docs.rs/ryu", - "edition": "2018", - "features": { - "no-panic": [ - "dep:no-panic" - ], - "small": [] - }, - "homepage": null, - "id": "ryu 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "float" - ], - "license": "Apache-2.0 OR BSL-1.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "ryu", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/ryu", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ryu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "upstream_benchmark", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/examples/upstream_benchmark.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "d2s_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/d2s_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "d2s_table_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/d2s_table_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "s2d_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/s2d_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "s2f_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/s2f_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "f2s_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/f2s_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "exhaustive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/exhaustive.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "common_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/common_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/benches/bench.rs", - "test": false - } - ], - "version": "1.0.13" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/same-file", - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml", - "name": "same-file", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "same-file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_same_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_same_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_stderr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_stderr.rs", - "test": false - } - ], - "version": "1.0.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler ", - "Steffen Butzer " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_Security_Cryptography", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_System_Memory" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_SystemInformation", - "Win32_System_Time" - ], - "kind": "dev", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl", - "documentation": "https://docs.rs/schannel/0.1.19/schannel/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "schannel 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "schannel", - "tls", - "ssl", - "https" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/schannel-0.1.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc" - } - } - }, - "name": "schannel", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/steffengy/schannel-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "schannel", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/schannel-0.1.21/src/lib.rs", - "test": true - } - ], - "version": "0.1.21" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base16ct", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "der", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "generic-array", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "pkcs8", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats\nincluding ASN.1 DER-serialized private keys as well as the\nElliptic-Curve-Point-to-Octet-String encoding\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "der?/alloc", - "pkcs8?/alloc", - "zeroize?/alloc" - ], - "default": [ - "der", - "point" - ], - "der": [ - "dep:der", - "zeroize" - ], - "pem": [ - "alloc", - "der/pem", - "pkcs8/pem" - ], - "pkcs8": [ - "dep:pkcs8" - ], - "point": [ - "dep:base16ct", - "dep:generic-array" - ], - "serde": [ - "dep:serdect" - ], - "std": [ - "alloc", - "der?/std" - ], - "subtle": [ - "dep:subtle" - ], - "zeroize": [ - "dep:zeroize", - "der?/zeroize" - ] - }, - "homepage": null, - "id": "sec1 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "elliptic-curve", - "secg" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sec1", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/sec1", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "sec1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "private_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/tests/private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/tests/traits.rs", - "test": true - } - ], - "version": "0.7.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", - "documentation": "https://docs.rs/semver", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "homepage": null, - "id": "semver 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cargo" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "semver", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/semver", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "semver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_version_req", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_version_req.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_identifier", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_identifier.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_version", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_version.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_autotrait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_autotrait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/benches/parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/build.rs", - "test": false - } - ], - "version": "1.0.17" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.162", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A generic serialization/deserialization framework", - "documentation": "https://docs.rs/serde", - "edition": "2015", - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "homepage": "https://serde.rs", - "id": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "name": "serde", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/build.rs", - "test": false - } - ], - "version": "1.0.162" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "arcnmx" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ordered-float", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Serialization value trees", - "documentation": "https://docs.rs/serde-value/*/serde_value/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-value-0.7.0/Cargo.toml", - "name": "serde-value", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/arcnmx/serde-value", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde-value", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-value-0.7.0/src/lib.rs", - "test": true - } - ], - "version": "0.7.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "features": { - "default": [], - "deserialize_in_place": [] - }, - "homepage": "https://serde.rs", - "id": "serde_derive 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_derive", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "proc-macro" - ], - "name": "serde_derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/build.rs", - "test": false - } - ], - "version": "1.0.162" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Find out about keys that are ignored when deserializing data", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "serde_ignored 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_ignored", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/serde-ignored", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde_ignored", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/tests/test.rs", - "test": true - } - ], - "version": "0.1.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "parser-implementations", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std" - ], - "kind": "normal", - "name": "indexmap", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ryu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "indoc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_bytes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_stacker", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A JSON serialization file format", - "documentation": "https://docs.rs/serde_json", - "edition": "2018", - "features": { - "alloc": [ - "serde/alloc" - ], - "arbitrary_precision": [], - "default": [ - "std" - ], - "float_roundtrip": [], - "indexmap": [ - "dep:indexmap" - ], - "preserve_order": [ - "indexmap", - "std" - ], - "raw_value": [], - "std": [ - "serde/std" - ], - "unbounded_depth": [] - }, - "homepage": null, - "id": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "json", - "serde", - "serialization" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "raw_value", - "unbounded_depth" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "raw_value" - ] - } - }, - "name": "serde_json", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/serde-rs/json", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde_json", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "lexical", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/lexical.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debug", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/debug.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "map", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/map.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/build.rs", - "test": false - } - ], - "version": "1.0.96" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/serde_spanned", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "span" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "serde_spanned", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "serde_spanned", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cpufeatures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha1-asm", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "uses_default_features": true - } - ], - "description": "SHA-1 hash function", - "documentation": "https://docs.rs/sha1", - "edition": "2018", - "features": { - "asm": [ - "sha1-asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "oid": [ - "digest/oid" - ], - "sha1-asm": [ - "dep:sha1-asm" - ], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "sha1 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "sha1", - "hash", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sha1", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sha1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/tests/mod.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/benches/mod.rs", - "test": false - } - ], - "version": "0.10.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cpufeatures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2-asm", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", - "documentation": "https://docs.rs/sha2", - "edition": "2018", - "features": { - "asm": [ - "sha2-asm" - ], - "asm-aarch64": [ - "asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "oid": [ - "digest/oid" - ], - "sha2-asm": [ - "dep:sha2-asm" - ], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "sha2", - "hash", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sha2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sha2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/tests/mod.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/benches/mod.rs", - "test": false - } - ], - "version": "0.10.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Escape characters that may have a special meaning in a shell", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shell-escape-0.1.5/Cargo.toml", - "name": "shell-escape", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/shell-escape", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "shell-escape", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shell-escape-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "signature_derive", - "optional": true, - "path": null, - "registry": null, - "rename": "derive", - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", - "documentation": "https://docs.rs/signature", - "edition": "2021", - "features": { - "alloc": [], - "derive": [ - "dep:derive" - ], - "digest": [ - "dep:digest" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "signature 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecdsa", - "ed25519", - "signature", - "signing" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "signature", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/signature", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "signature", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/tests/derive.rs", - "test": true - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Armin Ronacher ", - "Pierre-Étienne Meunier ", - "Brandon Williams " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bstr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.130", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-segmentation", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "console", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.15.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A diff library for Rust", - "documentation": null, - "edition": "2018", - "features": { - "bstr": [ - "dep:bstr" - ], - "bytes": [ - "bstr", - "text" - ], - "default": [ - "text" - ], - "inline": [ - "text" - ], - "serde": [ - "dep:serde" - ], - "text": [], - "unicode": [ - "text", - "unicode-segmentation", - "bstr/unicode" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ] - }, - "homepage": null, - "id": "similar 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "diff", - "difference", - "patience", - "compare", - "changes" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "similar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/similar", - "rust_version": "^1.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "similar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "patience", - "required-features": [ - "text", - "inline" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/patience.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/terminal.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal-inline", - "required-features": [ - "text", - "inline", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/terminal-inline.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "original-slices", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/original-slices.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "udiff", - "required-features": [ - "text", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/udiff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "close-matches", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/close-matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "large", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/large.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "serde", - "required-features": [ - "text", - "serde" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/serde.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "nonstring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/nonstring.rs", - "test": false - } - ], - "version": "2.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "array-ops", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitmaps", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "refpool", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Efficient sized chunk datatypes", - "documentation": "http://docs.rs/sized-chunks", - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "array-ops": [ - "dep:array-ops" - ], - "default": [ - "std" - ], - "refpool": [ - "dep:refpool" - ], - "ringbuffer": [ - "array-ops" - ], - "std": [] - }, - "homepage": null, - "id": "sized-chunks 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "sparse-array" - ], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sized-chunks-0.6.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "sized-chunks", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/bodil/sized-chunks", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sized-chunks", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sized-chunks-0.6.5/src/lib.rs", - "test": true - } - ], - "version": "0.6.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "content_inspector", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "document-features", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "dunce", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "escargot", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ignore", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libtest-mimic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "normalize-line-endings", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "inline" - ], - "kind": "normal", - "name": "similar", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "snapbox-macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wait-timeout", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.137", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "cmd": [ - "dep:os_pipe", - "dep:wait-timeout", - "dep:libc", - "dep:windows-sys" - ], - "color": [ - "dep:anstream", - "snapbox-macros/color" - ], - "color-auto": [ - "color" - ], - "debug": [ - "snapbox-macros/debug", - "dep:backtrace" - ], - "default": [ - "color-auto", - "diff" - ], - "detect-encoding": [ - "dep:content_inspector" - ], - "diff": [ - "dep:similar" - ], - "document-features": [ - "dep:document-features" - ], - "examples": [ - "dep:escargot" - ], - "harness": [ - "dep:libtest-mimic", - "dep:ignore" - ], - "json": [ - "structured-data", - "dep:serde_json" - ], - "path": [ - "dep:tempfile", - "dep:walkdir", - "dep:dunce", - "detect-encoding", - "dep:filetime" - ], - "structured-data": [ - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "snapbox", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "snap-fixture", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/src/bin/snap-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "snap-example-fixture", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/examples/snap-example-fixture.rs", - "test": false - } - ], - "version": "0.4.11" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "color": [ - "dep:anstream" - ], - "debug": [], - "default": [] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox-macros 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-macros-0.3.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "snapbox-macros", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox-macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-macros-0.3.4/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Thomas de Zeeuw " - ], - "categories": [ - "api-bindings", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.139", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "handleapi", - "ws2ipdef", - "ws2tcpip" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", - "documentation": "https://docs.rs/socket2", - "edition": "2018", - "features": { - "all": [] - }, - "homepage": "https://github.com/rust-lang/socket2", - "id": "socket2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "io", - "socket", - "network" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "all" - ] - } - }, - "name": "socket2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/socket2", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "socket2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.9/src/lib.rs", - "test": true - } - ], - "version": "0.4.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "base64ct", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "der", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base64ct?/alloc", - "der/alloc" - ], - "arbitrary": [ - "std", - "dep:arbitrary", - "der/arbitrary" - ], - "base64": [ - "dep:base64ct" - ], - "fingerprint": [ - "sha2" - ], - "pem": [ - "alloc", - "der/pem" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "der/std", - "alloc" - ] - }, - "homepage": null, - "id": "spki 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "x509" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "spki", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/spki", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "spki", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "spki", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/tests/spki.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/tests/traits.rs", - "test": true - } - ], - "version": "0.7.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Ted Mielczarek " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "vte", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Strip ANSI escape sequences from byte streams.", - "documentation": "https://docs.rs/strip-ansi-escapes", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/luser/strip-ansi-escapes", - "id": "strip-ansi-escapes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "escape", - "terminal" - ], - "license": "Apache-2.0/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/Cargo.toml", - "name": "strip-ansi-escapes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/luser/strip-ansi-escapes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "strip-ansi-escapes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "strip-escapes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/examples/strip-escapes.rs", - "test": false - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Danny Guo " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/dguo/strsim-rs", - "id": "strsim 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/Cargo.toml", - "name": "strsim", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dguo/strsim-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "strsim", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/tests/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "benches", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/benches/benches.rs", - "test": false - } - ], - "version": "0.10.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "documentation": "https://docs.rs/subtle", - "edition": "2015", - "features": { - "default": [ - "std", - "i128" - ], - "i128": [], - "nightly": [], - "std": [] - }, - "homepage": "https://dalek.rs/", - "id": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "constant-time", - "utilities" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/Cargo.toml", - "name": "subtle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/subtle", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "subtle", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/tests/mod.rs", - "test": true - } - ], - "version": "2.4.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.46", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2018", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_should_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_expr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_asyncness", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_grouping", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_pat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_round_trip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_visibility", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_iterators", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_meta", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_item", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_shebang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_stmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_derive_input", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_generics", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_attribute", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_lit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_precedence", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zzz_stable", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ty", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_receiver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_token_trees", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/benches/file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/build.rs", - "test": false - } - ], - "version": "1.0.109" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.55", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2021", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "syn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_should_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_expr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_asyncness", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_grouping", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_pat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_round_trip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_visibility", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_iterators", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_meta", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_item", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_shebang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_stmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_derive_input", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_generics", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_attribute", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_lit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_precedence", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zzz_stable", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_ty", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_receiver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_token_trees", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/benches/file.rs", - "test": false - } - ], - "version": "2.0.15" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "xattr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", - "documentation": "https://docs.rs/tar", - "edition": "2018", - "features": { - "default": [ - "xattr" - ], - "xattr": [ - "dep:xattr" - ] - }, - "homepage": "https://github.com/alexcrichton/tar-rs", - "id": "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tar", - "tarfile", - "encoding" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/Cargo.toml", - "name": "tar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/tar-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "raw_list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/raw_list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "extract_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/extract_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/tests/all.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "entry", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/tests/entry.rs", - "test": true - } - ], - "version": "0.4.38" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "fastrand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "fs" - ], - "kind": "normal", - "name": "rustix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.37.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A library for managing temporary files and directories.", - "documentation": "https://docs.rs/tempfile", - "edition": "2018", - "features": { - "nightly": [] - }, - "homepage": "https://stebalien.com/projects/tempfile-rs/", - "id": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/Cargo.toml", - "name": "tempfile", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "namedtempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/namedtempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/tempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "spooled", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/spooled.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/tempdir.rs", - "test": true - } - ], - "version": "3.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.\n", - "documentation": "https://docs.rs/termcolor", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/termcolor", - "id": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "win", - "color", - "ansi", - "console" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.2.0/Cargo.toml", - "name": "termcolor", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/termcolor", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "termcolor", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.2.0/src/lib.rs", - "test": true - } - ], - "version": "1.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Per-object thread-local storage", - "documentation": "https://docs.rs/thread_local/", - "edition": "2021", - "features": { - "nightly": [] - }, - "homepage": null, - "id": "thread_local 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "thread_local", - "concurrent", - "thread" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/Cargo.toml", - "name": "thread_local", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Amanieu/thread_local-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "thread_local", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "thread_local", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/benches/thread_local.rs", - "test": false - } - ], - "version": "1.1.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time", - "no-std", - "parser-implementations", - "value-formatting" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quickcheck", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "time-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "time-macros", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck_macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time-macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(__ui_tests)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.58", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_family = \"wasm\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(bench)", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.98", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_family = \"unix\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "num_threads", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_family = \"unix\")", - "uses_default_features": true - } - ], - "description": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "serde?/alloc" - ], - "default": [ - "std" - ], - "formatting": [ - "dep:itoa", - "std", - "time-macros?/formatting" - ], - "large-dates": [ - "time-macros?/large-dates" - ], - "local-offset": [ - "std", - "dep:libc", - "dep:num_threads" - ], - "macros": [ - "dep:time-macros" - ], - "parsing": [ - "time-macros?/parsing" - ], - "quickcheck": [ - "dep:quickcheck", - "alloc" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde", - "time-macros?/serde" - ], - "serde-human-readable": [ - "serde", - "formatting", - "parsing" - ], - "serde-well-known": [ - "serde", - "formatting", - "parsing" - ], - "std": [ - "alloc" - ], - "wasm-bindgen": [ - "dep:js-sys" - ] - }, - "homepage": "https://time-rs.github.io", - "id": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "__time_03_docs" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "time", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/time-rs/time", - "rust_version": "^1.63.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "time", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/../tests/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "benchmarks", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/../benchmarks/main.rs", - "test": false - } - ], - "version": "0.3.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [], - "description": "This crate is an implementation detail and should not be relied upon directly.", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/Cargo.toml", - "name": "time-core", - "publish": null, - "readme": null, - "repository": "https://github.com/time-rs/time", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "time-core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/src/lib.rs", - "test": true - } - ], - "version": "0.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "time-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " Procedural macros for the time crate.\n This crate is an implementation detail and should not be relied upon directly.\n", - "documentation": null, - "edition": "2021", - "features": { - "formatting": [], - "large-dates": [], - "parsing": [], - "serde": [] - }, - "homepage": null, - "id": "time-macros 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.8/Cargo.toml", - "name": "time-macros", - "publish": null, - "readme": null, - "repository": "https://github.com/time-rs/time", - "rust_version": "^1.63.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "proc-macro" - ], - "name": "time-macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.8/src/lib.rs", - "test": true - } - ], - "version": "0.2.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Lokathor " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "tinyvec_macros", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "smallvec", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [ - "tinyvec_macros" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "default": [], - "experimental_write_impl": [], - "grab_spare_slice": [], - "nightly_slice_partition_dedup": [], - "real_blackbox": [ - "criterion/real_blackbox" - ], - "rustc_1_40": [], - "rustc_1_55": [ - "rustc_1_40" - ], - "rustc_1_57": [ - "rustc_1_55" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "tinyvec_macros": [ - "dep:tinyvec_macros" - ] - }, - "homepage": null, - "id": "tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "vec", - "no_std", - "no-std" - ], - "license": "Zlib OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "rustc_1_40", - "rustc_1_55", - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docs_rs" - ] - } - }, - "playground": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "rustc_1_40", - "rustc_1_55", - "serde" - ] - } - }, - "name": "tinyvec", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Lokathor/tinyvec", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tinyvec", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tinyvec", - "required-features": [ - "alloc", - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/tinyvec.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arrayvec", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/arrayvec.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "macros", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/macros.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "smallvec", - "required-features": [ - "alloc", - "real_blackbox" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/smallvec.rs", - "test": false - } - ], - "version": "1.6.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Soveu " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Some macros for tiny containers", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "tinyvec_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0 OR Zlib", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.1/Cargo.toml", - "name": "tinyvec_macros", - "publish": null, - "readme": null, - "repository": "https://github.com/Soveu/tinyvec_macros", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tinyvec_macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "indexmap", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "serde_spanned", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "toml_datetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "toml_edit", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.19.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.152", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.93", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/toml", - "edition": "2021", - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit" - ], - "preserve_order": [ - "indexmap" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "decode", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/decode.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "enum_external", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/enum_external.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "toml2json", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/toml2json.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/encoder.rs", - "test": true - } - ], - "version": "0.7.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A TOML-compatible datetime type", - "documentation": "https://docs.rs/toml_datetime", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml_datetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_datetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std" - ], - "kind": "normal", - "name": "indexmap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "max_inline" - ], - "kind": "normal", - "name": "kstring", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "serde_spanned", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml_datetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winnow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libtest-mimic", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.93", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "harness" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-data", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Yet another format-preserving TOML parser.", - "documentation": "https://docs.rs/toml_edit", - "edition": "2021", - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "homepage": null, - "id": "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-name": "v{{version}}" - } - }, - "name": "toml_edit", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/ordian/toml_edit", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_edit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "visit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/examples/visit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "invalid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/invalid.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/encoder.rs", - "test": true - } - ], - "version": "0.19.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Paho Lurie-Gregg ", - "Andre Bogus " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "scale-info", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", - "documentation": "https://docs.rs/typenum", - "edition": "2018", - "features": { - "const-generics": [], - "force_unix_path_separator": [], - "i128": [], - "no_std": [], - "scale-info": [ - "dep:scale-info" - ], - "scale_info": [ - "scale-info/derive" - ], - "strict": [] - }, - "homepage": null, - "id": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/Cargo.toml", - "name": "typenum", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/paholg/typenum", - "rust_version": "^1.37.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "typenum", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-main", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/main.rs", - "test": false - } - ], - "version": "1.16.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "no-std", - "encoding", - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "flame", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "flamer", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": ">=0.8, <2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": ">=0.8, <2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Implementation of the Unicode Bidirectional Algorithm", - "documentation": "https://docs.rs/unicode-bidi/", - "edition": "2018", - "features": { - "bench_it": [], - "default": [ - "std", - "hardcoded-data" - ], - "flame": [ - "dep:flame" - ], - "flame_it": [ - "flame", - "flamer" - ], - "flamer": [ - "dep:flamer" - ], - "hardcoded-data": [], - "serde": [ - "dep:serde" - ], - "std": [], - "unstable": [], - "with_serde": [ - "serde" - ] - }, - "homepage": null, - "id": "unicode-bidi 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rtl", - "unicode", - "text", - "layout", - "bidi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/Cargo.toml", - "name": "unicode-bidi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/unicode-bidi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode_bidi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "conformance_tests", - "required-features": [ - "hardcoded-data" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/tests/conformance_tests.rs", - "test": true - } - ], - "version": "0.3.13" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fst", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "roaring", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ucd-trie", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unicode-xid", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "xid" - ], - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "unicode-ident", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "static_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/tests/static_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compare", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/tests/compare.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/benches/xid.rs", - "test": false - } - ], - "version": "1.0.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "tinyvec", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", - "documentation": "https://docs.rs/unicode-normalization/", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/unicode-rs/unicode-normalization", - "id": "unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "unicode", - "normalization", - "decomposition", - "recomposition" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/Cargo.toml", - "name": "unicode-normalization", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-normalization", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-normalization", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/benches/bench.rs", - "test": false - } - ], - "version": "0.1.22" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-std", - "optional": true, - "path": null, - "registry": null, - "rename": "std", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "documentation": "https://unicode-rs.github.io/unicode-width", - "edition": "2015", - "features": { - "bench": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "homepage": "https://github.com/unicode-rs/unicode-width", - "id": "unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "width", - "unicode" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/Cargo.toml", - "name": "unicode-width", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "unicode-width", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/src/lib.rs", - "test": true - } - ], - "version": "0.1.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "erick.tryzelaar ", - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", - "documentation": "https://unicode-rs.github.io/unicode-xid", - "edition": "2015", - "features": { - "bench": [], - "default": [], - "no_std": [] - }, - "homepage": "https://github.com/unicode-rs/unicode-xid", - "id": "unicode-xid 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "unicode", - "xid" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/Cargo.toml", - "name": "unicode-xid", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-xid", - "rust_version": "^1.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "unicode-xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "exhaustive_tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/tests/exhaustive_tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/benches/xid.rs", - "test": false - } - ], - "version": "0.2.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [ - "parser-implementations", - "web-programming", - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "form_urlencoded", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "idna", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "percent-encoding", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "debugger_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "debugger_test_parser", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "URL library for Rust, based on the WHATWG URL Standard", - "documentation": "https://docs.rs/url", - "edition": "2018", - "features": { - "debugger_visualizer": [], - "default": [], - "expose_internals": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "url", - "parser" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/Cargo.toml", - "name": "url", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/rust-url", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "url", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debugger_visualizer", - "required-features": [ - "debugger_visualizer" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/debugger_visualizer.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/unit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "data", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/data.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "parse_url", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/benches/parse_url.rs", - "test": false - } - ], - "version": "2.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "Table-driven UTF-8 parser", - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "features": { - "default": [], - "nightly": [] - }, - "homepage": null, - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utf8", - "parse", - "table" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/Cargo.toml", - "name": "utf8parse", - "publish": null, - "readme": null, - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "utf8parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "utf-8-demo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/tests/utf-8-demo.rs", - "test": true - } - ], - "version": "0.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jim McGrath " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", - "documentation": "https://docs.rs/vcpkg", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies", - "windows", - "macos", - "linux" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vcpkg-0.2.15/Cargo.toml", - "name": "vcpkg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mcgoo/vcpkg-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "vcpkg", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vcpkg-0.2.15/src/lib.rs", - "test": true - } - ], - "version": "0.2.15" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sergio Benitez " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Tiny crate to check the version of the installed/running rustc.", - "documentation": "https://docs.rs/version_check/", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "version", - "rustc", - "minimum", - "check" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/Cargo.toml", - "name": "version_check", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/version_check", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "version_check", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs", - "test": true - } - ], - "version": "0.9.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arrayvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "vte_generate_state_changes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for implementing terminal emulators", - "documentation": "https://docs.rs/vte/", - "edition": "2018", - "features": { - "arrayvec": [ - "dep:arrayvec" - ], - "default": [ - "no_std" - ], - "nightly": [ - "utf8parse/nightly" - ], - "no_std": [ - "arrayvec" - ] - }, - "homepage": null, - "id": "vte 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "vte", - "parser", - "terminal" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/Cargo.toml", - "name": "vte", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "vte", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "parselog", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/examples/parselog.rs", - "test": false - } - ], - "version": "0.10.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Christian Duerr " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Proc macro for generating VTE state changes", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "vte_generate_state_changes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte_generate_state_changes-0.1.1/Cargo.toml", - "name": "vte_generate_state_changes", - "publish": null, - "readme": null, - "repository": "https://github.com/jwilm/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "vte_generate_state_changes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte_generate_state_changes-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Recursively walk a directory.", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/walkdir", - "id": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.3/Cargo.toml", - "name": "walkdir", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "walkdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.3/src/lib.rs", - "test": true - } - ], - "version": "2.3.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Cranelift Project Developers" - ], - "categories": [ - "no-std", - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Experimental WASI API bindings for Rust", - "documentation": "https://docs.rs/wasi", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "rustc-std-workspace-alloc" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "std": [] - }, - "homepage": null, - "id": "wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "webassembly", - "wasm" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", - "name": "wasi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", - "test": true - } - ], - "version": "0.11.0+wasi-snapshot-preview1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-macro", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "js-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.3.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test-crate-a", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test-crate-b", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "Easy support for interacting between JS and Rust.\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "default": [ - "spans", - "std" - ], - "enable-interning": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde-serialize": [ - "serde", - "serde_json", - "std" - ], - "serde_json": [ - "dep:serde_json" - ], - "spans": [ - "wasm-bindgen-macro/spans" - ], - "std": [], - "strict-macro": [ - "wasm-bindgen-macro/strict-macro" - ], - "xxx_debug_only_print_generated_code": [ - "wasm-bindgen-macro/xxx_debug_only_print_generated_code" - ] - }, - "homepage": "https://rustwasm.github.io/", - "id": "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-serialize" - ] - } - } - }, - "name": "wasm-bindgen", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "must_use", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/must_use.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "non_wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/non_wasm.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "headless", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/headless/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "std-crate-no-std-dep", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/std-crate-no-std-dep.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unwrap_throw", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/unwrap_throw.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/wasm/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/build.rs", - "test": false - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bumpalo", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-shared", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Backend code generation of the wasm-bindgen tool\n", - "documentation": "https://docs.rs/wasm-bindgen-backend", - "edition": "2018", - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-backend 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.84/Cargo.toml", - "name": "wasm-bindgen-backend", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-backend", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.84/src/lib.rs", - "test": true - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-macro-support", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "web-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "spans": [ - "wasm-bindgen-macro-support/spans" - ], - "strict-macro": [ - "wasm-bindgen-macro-support/strict-macro" - ], - "xxx_debug_only_print_generated_code": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-macro 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/Cargo.toml", - "name": "wasm-bindgen-macro", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "wasm-bindgen-macro", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ui", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/tests/ui.rs", - "test": true - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "visit", - "full" - ], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-backend", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-shared", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [ - "wasm-bindgen-backend/spans" - ], - "strict-macro": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-macro-support 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.84/Cargo.toml", - "name": "wasm-bindgen-macro-support", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-macro-support", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.84/src/lib.rs", - "test": true - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", - "documentation": "https://docs.rs/wasm-bindgen-shared", - "edition": "2018", - "features": {}, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "wasm_bindgen", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/Cargo.toml", - "name": "wasm-bindgen-shared", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-shared", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/build.rs", - "test": false - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "winapi-i686-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-x86_64-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - } - ], - "description": "Raw FFI bindings for all of Windows API.", - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "features": { - "accctrl": [], - "aclapi": [], - "activation": [], - "adhoc": [], - "appmgmt": [], - "audioclient": [], - "audiosessiontypes": [], - "avrt": [], - "basetsd": [], - "bcrypt": [], - "bits": [], - "bits10_1": [], - "bits1_5": [], - "bits2_0": [], - "bits2_5": [], - "bits3_0": [], - "bits4_0": [], - "bits5_0": [], - "bitscfg": [], - "bitsmsg": [], - "bluetoothapis": [], - "bluetoothleapis": [], - "bthdef": [], - "bthioctl": [], - "bthledef": [], - "bthsdpdef": [], - "bugcodes": [], - "cderr": [], - "cfg": [], - "cfgmgr32": [], - "cguid": [], - "combaseapi": [], - "coml2api": [], - "commapi": [], - "commctrl": [], - "commdlg": [], - "commoncontrols": [], - "consoleapi": [], - "corecrt": [], - "corsym": [], - "d2d1": [], - "d2d1_1": [], - "d2d1_2": [], - "d2d1_3": [], - "d2d1effectauthor": [], - "d2d1effects": [], - "d2d1effects_1": [], - "d2d1effects_2": [], - "d2d1svg": [], - "d2dbasetypes": [], - "d3d": [], - "d3d10": [], - "d3d10_1": [], - "d3d10_1shader": [], - "d3d10effect": [], - "d3d10misc": [], - "d3d10sdklayers": [], - "d3d10shader": [], - "d3d11": [], - "d3d11_1": [], - "d3d11_2": [], - "d3d11_3": [], - "d3d11_4": [], - "d3d11on12": [], - "d3d11sdklayers": [], - "d3d11shader": [], - "d3d11tokenizedprogramformat": [], - "d3d12": [], - "d3d12sdklayers": [], - "d3d12shader": [], - "d3d9": [], - "d3d9caps": [], - "d3d9types": [], - "d3dcommon": [], - "d3dcompiler": [], - "d3dcsx": [], - "d3dkmdt": [], - "d3dkmthk": [], - "d3dukmdt": [], - "d3dx10core": [], - "d3dx10math": [], - "d3dx10mesh": [], - "datetimeapi": [], - "davclnt": [], - "dbghelp": [], - "dbt": [], - "dcommon": [], - "dcomp": [], - "dcompanimation": [], - "dcomptypes": [], - "dde": [], - "ddraw": [], - "ddrawi": [], - "ddrawint": [], - "debug": [ - "impl-debug" - ], - "debugapi": [], - "devguid": [], - "devicetopology": [], - "devpkey": [], - "devpropdef": [], - "dinput": [], - "dinputd": [], - "dispex": [], - "dmksctl": [], - "dmusicc": [], - "docobj": [], - "documenttarget": [], - "dot1x": [], - "dpa_dsa": [], - "dpapi": [], - "dsgetdc": [], - "dsound": [], - "dsrole": [], - "dvp": [], - "dwmapi": [], - "dwrite": [], - "dwrite_1": [], - "dwrite_2": [], - "dwrite_3": [], - "dxdiag": [], - "dxfile": [], - "dxgi": [], - "dxgi1_2": [], - "dxgi1_3": [], - "dxgi1_4": [], - "dxgi1_5": [], - "dxgi1_6": [], - "dxgidebug": [], - "dxgiformat": [], - "dxgitype": [], - "dxva2api": [], - "dxvahd": [], - "eaptypes": [], - "enclaveapi": [], - "endpointvolume": [], - "errhandlingapi": [], - "everything": [], - "evntcons": [], - "evntprov": [], - "evntrace": [], - "excpt": [], - "exdisp": [], - "fibersapi": [], - "fileapi": [], - "functiondiscoverykeys_devpkey": [], - "gl-gl": [], - "guiddef": [], - "handleapi": [], - "heapapi": [], - "hidclass": [], - "hidpi": [], - "hidsdi": [], - "hidusage": [], - "highlevelmonitorconfigurationapi": [], - "hstring": [], - "http": [], - "ifdef": [], - "ifmib": [], - "imm": [], - "impl-debug": [], - "impl-default": [], - "in6addr": [], - "inaddr": [], - "inspectable": [], - "interlockedapi": [], - "intsafe": [], - "ioapiset": [], - "ipexport": [], - "iphlpapi": [], - "ipifcons": [], - "ipmib": [], - "iprtrmib": [], - "iptypes": [], - "jobapi": [], - "jobapi2": [], - "knownfolders": [], - "ks": [], - "ksmedia": [], - "ktmtypes": [], - "ktmw32": [], - "l2cmn": [], - "libloaderapi": [], - "limits": [], - "lmaccess": [], - "lmalert": [], - "lmapibuf": [], - "lmat": [], - "lmcons": [], - "lmdfs": [], - "lmerrlog": [], - "lmjoin": [], - "lmmsg": [], - "lmremutl": [], - "lmrepl": [], - "lmserver": [], - "lmshare": [], - "lmstats": [], - "lmsvc": [], - "lmuse": [], - "lmwksta": [], - "lowlevelmonitorconfigurationapi": [], - "lsalookup": [], - "memoryapi": [], - "minschannel": [], - "minwinbase": [], - "minwindef": [], - "mmdeviceapi": [], - "mmeapi": [], - "mmreg": [], - "mmsystem": [], - "mprapidef": [], - "msaatext": [], - "mscat": [], - "mschapp": [], - "mssip": [], - "mstcpip": [], - "mswsock": [], - "mswsockdef": [], - "namedpipeapi": [], - "namespaceapi": [], - "nb30": [], - "ncrypt": [], - "netioapi": [], - "nldef": [], - "ntddndis": [], - "ntddscsi": [], - "ntddser": [], - "ntdef": [], - "ntlsa": [], - "ntsecapi": [], - "ntstatus": [], - "oaidl": [], - "objbase": [], - "objidl": [], - "objidlbase": [], - "ocidl": [], - "ole2": [], - "oleauto": [], - "olectl": [], - "oleidl": [], - "opmapi": [], - "pdh": [], - "perflib": [], - "physicalmonitorenumerationapi": [], - "playsoundapi": [], - "portabledevice": [], - "portabledeviceapi": [], - "portabledevicetypes": [], - "powerbase": [], - "powersetting": [], - "powrprof": [], - "processenv": [], - "processsnapshot": [], - "processthreadsapi": [], - "processtopologyapi": [], - "profileapi": [], - "propidl": [], - "propkey": [], - "propkeydef": [], - "propsys": [], - "prsht": [], - "psapi": [], - "qos": [], - "realtimeapiset": [], - "reason": [], - "restartmanager": [], - "restrictederrorinfo": [], - "rmxfguid": [], - "roapi": [], - "robuffer": [], - "roerrorapi": [], - "rpc": [], - "rpcdce": [], - "rpcndr": [], - "rtinfo": [], - "sapi": [], - "sapi51": [], - "sapi53": [], - "sapiddk": [], - "sapiddk51": [], - "schannel": [], - "sddl": [], - "securityappcontainer": [], - "securitybaseapi": [], - "servprov": [], - "setupapi": [], - "shellapi": [], - "shellscalingapi": [], - "shlobj": [], - "shobjidl": [], - "shobjidl_core": [], - "shtypes": [], - "softpub": [], - "spapidef": [], - "spellcheck": [], - "sporder": [], - "sql": [], - "sqlext": [], - "sqltypes": [], - "sqlucode": [], - "sspi": [], - "std": [], - "stralign": [], - "stringapiset": [], - "strmif": [], - "subauth": [], - "synchapi": [], - "sysinfoapi": [], - "systemtopologyapi": [], - "taskschd": [], - "tcpestats": [], - "tcpmib": [], - "textstor": [], - "threadpoolapiset": [], - "threadpoollegacyapiset": [], - "timeapi": [], - "timezoneapi": [], - "tlhelp32": [], - "transportsettingcommon": [], - "tvout": [], - "udpmib": [], - "unknwnbase": [], - "urlhist": [], - "urlmon": [], - "usb": [], - "usbioctl": [], - "usbiodef": [], - "usbscan": [], - "usbspec": [], - "userenv": [], - "usp10": [], - "utilapiset": [], - "uxtheme": [], - "vadefs": [], - "vcruntime": [], - "vsbackup": [], - "vss": [], - "vsserror": [], - "vswriter": [], - "wbemads": [], - "wbemcli": [], - "wbemdisp": [], - "wbemprov": [], - "wbemtran": [], - "wct": [], - "werapi": [], - "winbase": [], - "wincodec": [], - "wincodecsdk": [], - "wincon": [], - "wincontypes": [], - "wincred": [], - "wincrypt": [], - "windef": [], - "windot11": [], - "windowsceip": [], - "windowsx": [], - "winefs": [], - "winerror": [], - "winevt": [], - "wingdi": [], - "winhttp": [], - "wininet": [], - "winineti": [], - "winioctl": [], - "winnetwk": [], - "winnls": [], - "winnt": [], - "winreg": [], - "winsafer": [], - "winscard": [], - "winsmcrd": [], - "winsock2": [], - "winspool": [], - "winstring": [], - "winsvc": [], - "wintrust": [], - "winusb": [], - "winusbio": [], - "winuser": [], - "winver": [], - "wlanapi": [], - "wlanihv": [], - "wlanihvtypes": [], - "wlantypes": [], - "wlclient": [], - "wmistr": [], - "wnnc": [], - "wow64apiset": [], - "wpdmtpextensions": [], - "ws2bth": [], - "ws2def": [], - "ws2ipdef": [], - "ws2spi": [], - "ws2tcpip": [], - "wtsapi32": [], - "wtypes": [], - "wtypesbase": [], - "xinput": [] - }, - "homepage": null, - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "features": [ - "everything", - "impl-debug", - "impl-default" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs", - "test": false - } - ], - "version": "0.3.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-i686-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-i686-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std", - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A dumping ground for high level safe wrappers over winapi.", - "documentation": "https://docs.rs/winapi-util", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/winapi-util", - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "winapi", - "util", - "win" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi-util", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "winapi-util", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-x86_64-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-x86_64-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_AI": [ - "Win32" - ], - "Win32_AI_MachineLearning": [ - "Win32_AI" - ], - "Win32_AI_MachineLearning_DirectML": [ - "Win32_AI_MachineLearning" - ], - "Win32_AI_MachineLearning_WinML": [ - "Win32_AI_MachineLearning" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_CompositionSwapchain": [ - "Win32_Graphics" - ], - "Win32_Graphics_DXCore": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D_Common": [ - "Win32_Graphics_Direct2D" - ], - "Win32_Graphics_Direct3D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D10": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D_Dxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_Direct3D_Fxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_DirectComposition": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectDraw": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectManipulation": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectWrite": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi_Common": [ - "Win32_Graphics_Dxgi" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging_D2D": [ - "Win32_Graphics_Imaging" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectSound": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DirectShow": [ - "Win32_Media" - ], - "Win32_Media_DirectShow_Xml": [ - "Win32_Media_DirectShow" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaFoundation": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_PictureAcquisition": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_SideShow": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_TransactionServer": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WinRT": [ - "Win32_System" - ], - "Win32_System_WinRT_AllJoyn": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Composition": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_CoreInputView": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Direct3D11": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Display": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics_Capture": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Direct2D": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Imaging": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Holographic": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Isolation": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_ML": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Media": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Pdf": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Printing": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Shell": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Storage": [ - "Win32_System_WinRT" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_UI_Xaml": [ - "Win32_UI" - ], - "Win32_UI_Xaml_Diagnostics": [ - "Win32_UI_Xaml" - ], - "default": [], - "deprecated": [] - }, - "homepage": null, - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs", - "test": true - } - ], - "version": "0.42.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows_raw_dylib))", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/src/lib.rs", - "test": true - } - ], - "version": "0.45.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Wdk": [], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ClrProfiling": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_ActiveScript": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.2/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.2/src/lib.rs", - "test": true - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "parsing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-stream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "terminal_size", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "circular", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "escargot", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "examples" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "term-transcript", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A byte-oriented, zero-copy, parser combinators library", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [], - "debug": [ - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size", - "dep:anstyle-stream" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd" - ] - }, - "homepage": null, - "id": "winnow 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "winnow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "winnow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "arithmetic", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/arithmetic/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "css", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/css/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_error", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/custom_error.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "http", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/http/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "ini", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ini/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "json", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "ndjson", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ndjson/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "json_iterator", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json_iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "iterator", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "s_expression", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/s_expression/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "string", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/string/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "arithmetic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/arithmetic/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "contains_token", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/benches/contains_token.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "number", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/benches/number.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "http", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/http/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "ini", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ini/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "json", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json/bench.rs", - "test": false - } - ], - "version": "0.4.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The RustCrypto Project Developers" - ], - "categories": [ - "cryptography", - "memory-management", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", - "documentation": null, - "edition": "2021", - "features": { - "aarch64": [], - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "zeroize_derive" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "zeroize_derive": [ - "dep:zeroize_derive" - ] - }, - "homepage": null, - "id": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memory", - "memset", - "secure", - "volatile", - "zero" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "zeroize", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "zeroize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zeroize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/tests/zeroize.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zeroize_derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/tests/zeroize_derive.rs", - "test": true - } - ], - "version": "1.6.0" - }, - "source": "CratesIo" - } -] diff --git a/deps_tests/cargo_0.70.1.deps_no_dev.json b/deps_tests/cargo_0.70.1.deps_no_dev.json deleted file mode 100644 index b0fdd1a..0000000 --- a/deps_tests/cargo_0.70.1.deps_no_dev.json +++ /dev/null @@ -1,40774 +0,0 @@ -[ - { - "package": { - "authors": [ - "Jonas Schievink " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple clean-room implementation of the Adler-32 checksum", - "documentation": "https://docs.rs/adler/", - "edition": "2015", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "homepage": null, - "id": "adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "checksum", - "integrity", - "hash", - "adler32", - "zlib" - ], - "license": "0BSD OR MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg=docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-commit-message": "Release {{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", - "search": "## Unreleased\n" - }, - { - "file": "README.md", - "replace": "adler = \"{{version}}\"", - "search": "adler = \"[a-z0-9\\\\.-]+\"" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/adler/{{version}}", - "search": "https://docs.rs/adler/[a-z0-9\\.-]+" - } - ], - "tag-message": "{{version}}" - } - }, - "name": "adler", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jonas-schievink/adler.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "adler", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/benches/bench.rs", - "test": false - } - ], - "version": "1.0.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Fast multiple substring searching.", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [ - "memchr/std" - ] - }, - "homepage": "https://github.com/BurntSushi/aho-corasick", - "id": "aho-corasick 0.7.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "search", - "text", - "aho", - "multi" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/Cargo.toml", - "name": "aho-corasick", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "aho_corasick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs", - "test": true - } - ], - "version": "0.7.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "log", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast multiple substring searching.", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std", - "perf-literal" - ], - "logging": [ - "dep:log" - ], - "perf-literal": [ - "dep:memchr" - ], - "std": [ - "memchr?/std" - ] - }, - "homepage": "https://github.com/BurntSushi/aho-corasick", - "id": "aho-corasick 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "search", - "text", - "pattern", - "multi" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "aho-corasick", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "aho_corasick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-1.0.1/src/lib.rs", - "test": true - } - ], - "version": "1.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-query", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "colorchoice", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "owo-colors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "strip-ansi-escapes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-wincon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.", - "documentation": null, - "edition": "2021", - "features": { - "auto": [ - "dep:anstyle-query", - "dep:colorchoice", - "dep:is-terminal" - ], - "default": [ - "auto", - "wincon" - ], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstream", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "strip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/strip.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/wincon.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/stream.rs", - "test": false - } - ], - "version": "0.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "ANSI text styling", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-prefix": "" - } - }, - "name": "anstyle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/examples/dump.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arrayvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "codegenrs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "vte_generate_state_changes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parse ANSI Style Escapes", - "documentation": null, - "edition": "2021", - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-parse", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "parselog", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/examples/parselog.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/benches/parse.rs", - "test": false - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Look up colored console capabilities", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-query", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-query", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "report", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/examples/report.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Styling legacy Windows terminals", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-wincon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-wincon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/examples/dump.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/examples/set.rs", - "test": false - } - ], - "version": "1.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "dev", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "thiserror", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.66", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Flexible concrete Error type built on std::error::Error", - "documentation": "https://docs.rs/anyhow", - "edition": "2018", - "features": { - "backtrace": [ - "dep:backtrace" - ], - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "error", - "error-handling" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "anyhow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/anyhow", - "rust_version": "^1.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "anyhow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_downcast", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_downcast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ffi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_ffi.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_context", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_context.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_repr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_repr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_chain", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_chain.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ensure", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_ensure.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_macros.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_convert", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_convert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_source", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_source.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_backtrace", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_backtrace.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_autotrait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_autotrait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_boxed", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_boxed.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/build.rs", - "test": false - } - ], - "version": "1.0.71" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "matches", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", - "documentation": "https://docs.rs/arrayvec/", - "edition": "2018", - "features": { - "array-sizes-129-255": [], - "array-sizes-33-128": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "unstable-const-fn": [] - }, - "homepage": null, - "id": "arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "stack", - "vector", - "array", - "data-structure", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "arrayvec", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/arrayvec", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "arrayvec", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "extend", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/benches/extend.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "arraystring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/benches/arraystring.rs", - "test": false - } - ], - "version": "0.5.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [], - "description": "Automatic cfg for Rust compiler features", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml", - "name": "autocfg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "autocfg", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "integers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "versions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "paths", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "rustflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [], - "description": "Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids\nany usages of data-dependent branches/LUTs and thereby provides portable\n\"best effort\" constant-time operation and embedded-friendly no_std support\n", - "documentation": "https://docs.rs/base16ct", - "edition": "2021", - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hex", - "hexadecimal" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "base16ct", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/base16ct", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "base16ct", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/tests/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/benches/mod.rs", - "test": false - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alice Maz ", - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "structopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "encodes and decodes base64 as bytes or utf8", - "documentation": "https://docs.rs/base64", - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/Cargo.toml", - "name": "base64", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "base64", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "base64", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/base64.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "make_tables", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/make_tables.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "decode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/decode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "helpers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/helpers.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "encode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/encode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "benchmarks", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/benches/benchmarks.rs", - "test": false - } - ], - "version": "0.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "base64", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.21", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", - "documentation": "https://docs.rs/base64ct", - "edition": "2021", - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "base64", - "pem", - "phc" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "base64ct", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/base64ct", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "base64ct", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "bcrypt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/bcrypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "crypt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/crypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "shacrypt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/shacrypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "url", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/url.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "standard", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/standard.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "proptests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/proptests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/benches/mod.rs", - "test": false - } - ], - "version": "1.6.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to generate structures which behave like bitflags.\n", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/bitflags/bitflags", - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "name": "bitflags", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs", - "test": true - } - ], - "version": "1.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest-derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fixed size boolean arrays", - "documentation": "http://docs.rs/bitmaps", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitmaps-2.1.0/Cargo.toml", - "name": "bitmaps", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/bodil/bitmaps", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitmaps", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitmaps-2.1.0/src/lib.rs", - "test": true - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "generic-array", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Buffer type for block processing of data", - "documentation": "https://docs.rs/block-buffer", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "block-buffer 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "block", - "buffer" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/Cargo.toml", - "name": "block-buffer", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "block-buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/tests/mod.rs", - "test": true - } - ], - "version": "0.10.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing", - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.14.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex-automata", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "ucd-parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "unicode-segmentation", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A string type that is not required to be valid UTF-8.", - "documentation": "https://docs.rs/bstr", - "edition": "2021", - "features": { - "alloc": [ - "serde?/alloc" - ], - "default": [ - "std", - "unicode" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc", - "memchr/std", - "serde?/std" - ], - "unicode": [ - "dep:once_cell", - "dep:regex-automata" - ] - }, - "homepage": "https://github.com/BurntSushi/bstr", - "id": "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "str", - "byte", - "bytes", - "text" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "bstr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/bstr", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "bstr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "graphemes", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/graphemes.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lines", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/lines.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "uppercase", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/uppercase.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "words", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/words.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "words-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/words-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lines-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/lines-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "uppercase-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/uppercase-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "graphemes-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/graphemes-std.rs", - "test": false - } - ], - "version": "1.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "memory-management", - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A fast bump allocation arena for Rust.", - "documentation": "https://docs.rs/bumpalo", - "edition": "2021", - "features": { - "allocator_api": [], - "boxed": [], - "collections": [], - "default": [] - }, - "homepage": null, - "id": "bumpalo 3.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "bumpalo", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/fitzgen/bumpalo", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "bumpalo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "try_alloc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/tests/try_alloc.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "benches", - "required-features": [ - "collections" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/benches/benches.rs", - "test": false - } - ], - "version": "3.12.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Hyunsik Choi " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "an utility for human-readable bytes representations", - "documentation": "https://docs.rs/bytesize/", - "edition": "2015", - "features": { - "default": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/hyunsik/bytesize/", - "id": "bytesize 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "byte", - "byte-size", - "utility", - "human-readable", - "format" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/Cargo.toml", - "name": "bytesize", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hyunsik/bytesize/", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "bytesize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs", - "test": true - } - ], - "version": "1.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.47", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "base64", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bytesize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cargo-platform", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-platform", - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cargo-util", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-util", - "registry": null, - "rename": null, - "req": "^0.2.3", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "clap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^4.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crates-io", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/crates-io", - "registry": null, - "rename": null, - "req": "^0.36.0", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [ - "http2" - ], - "kind": "normal", - "name": "curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.44", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "curl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.59", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "env_logger", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": "normal", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "git2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.16.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "git2-curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.17.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hmac", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "home", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "http-auth", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ignore", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "im-rc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^15.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "indexmap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazycell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libgit2-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.14.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "opener", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "os_info", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "v3", - "paserk", - "std", - "serde" - ], - "kind": "normal", - "name": "pasetors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pathdiff", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pretty_env_logger", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-workspace-hack", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustfix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "semver", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.123", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde-value", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_ignored", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "raw_value" - ], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.30", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha1", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "shell-escape", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "strip-ansi-escapes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": "normal", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml_edit", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.19.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-width", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-xid", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "cargo-test-macro", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "cargo-test-support", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff", - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": "build", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "fwdansi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_Console", - "Win32_System_Threading", - "Win32_System_JobObjects", - "Win32_Security", - "Win32_System_SystemServices" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cargo, a package manager for Rust.\n", - "documentation": "https://docs.rs/cargo", - "edition": "2021", - "features": { - "openssl": [ - "dep:openssl" - ], - "pretty-env-logger": [ - "pretty_env_logger" - ], - "pretty_env_logger": [ - "dep:pretty_env_logger" - ], - "vendored-libgit2": [ - "libgit2-sys/vendored" - ], - "vendored-openssl": [ - "openssl/vendored" - ] - }, - "homepage": "https://crates.io", - "id": "cargo 0.70.1 (path+file://$CARGO_MANIFEST_DIR)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/Cargo.toml", - "name": "cargo", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/cargo/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "cargo", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/bin/cargo/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "build-std", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/build-std/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "internal", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/internal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/build.rs", - "test": false - } - ], - "version": "0.70.1" - }, - "source": "Local" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Cargo's representation of a target platform.", - "documentation": "https://docs.rs/cargo-platform", - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-platform 0.1.2 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-platform)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/Cargo.toml", - "name": "cargo-platform", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-platform", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "matches", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/examples/matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_cfg", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/tests/test_cfg.rs", - "test": true - } - ], - "version": "0.1.2" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crypto-hash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.88", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "shell-escape", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "mac_os_10_7_support" - ], - "kind": "normal", - "name": "core-foundation", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"macos\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "miow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation", - "Win32_System_Console" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Miscellaneous support code used by Cargo.", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-util/Cargo.toml", - "name": "cargo-util", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-util", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-util/src/lib.rs", - "test": true - } - ], - "version": "0.2.3" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "features": { - "jobserver": [ - "dep:jobserver" - ], - "parallel": [ - "jobserver" - ] - }, - "homepage": "https://github.com/rust-lang/cc-rs", - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/Cargo.toml", - "name": "cc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "gcc-shim", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/bin/gcc-shim.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cxxflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cxxflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cc_env", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cc_env.rs", - "test": true - } - ], - "version": "1.0.79" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/alexcrichton/cfg-if", - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml", - "name": "cfg-if", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cfg-if", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "xcrate", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clap_builder", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=4.2.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "clap_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=4.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "shlex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.77", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "color-auto", - "diff", - "examples" - ], - "kind": "dev", - "name": "trycmd", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.15", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unic-emoji-char", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "documentation": null, - "edition": "2021", - "features": { - "cargo": [ - "clap_builder/cargo" - ], - "color": [ - "clap_builder/color" - ], - "debug": [ - "clap_builder/debug", - "clap_derive?/debug" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [ - "clap_builder/deprecated", - "clap_derive?/deprecated" - ], - "derive": [ - "dep:clap_derive", - "dep:once_cell" - ], - "env": [ - "clap_builder/env" - ], - "error-context": [ - "clap_builder/error-context" - ], - "help": [ - "clap_builder/help" - ], - "std": [ - "clap_builder/std" - ], - "string": [ - "clap_builder/string" - ], - "suggestions": [ - "clap_builder/suggestions" - ], - "unicode": [ - "clap_builder/unicode" - ], - "unstable-doc": [ - "clap_builder/unstable-doc", - "derive" - ], - "unstable-styles": [ - "clap_builder/unstable-styles" - ], - "unstable-v5": [ - "clap_builder/unstable-v5", - "clap_derive?/unstable-v5", - "deprecated" - ], - "usage": [ - "clap_builder/usage" - ], - "wrap_help": [ - "clap_builder/wrap_help" - ] - }, - "homepage": null, - "id": "clap 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "file": "CITATION.cff", - "replace": "date-released: {{date}}", - "search": "^date-released: ....-..-.." - }, - { - "file": "CITATION.cff", - "replace": "version: {{version}}", - "search": "^version: .+\\..+\\..+" - } - ], - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "name": "clap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "stdio-fixture", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/src/bin/stdio-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "demo", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/demo.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "cargo-example", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/cargo-example.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "cargo-example-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/cargo-example-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "escaped-positional", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/escaped-positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "escaped-positional-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/escaped-positional-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "find", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/find.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "git-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/git-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "typed-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/typed-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "busybox", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/multicall-busybox.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "hostname", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/multicall-hostname.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "repl", - "required-features": [ - "help" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/repl.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "01_quick", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/01_quick.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_apps", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_apps.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_crate", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_crate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_app_settings", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_app_settings.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_bool", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_01_flag_bool.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_count", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_01_flag_count.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_02_option.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_mult", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_02_option_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_03_positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_mult", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_03_positional_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_04_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_05_default_values", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_05_default_values.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_possible", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_01_possible.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_enum", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_01_enum.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_parse", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_02_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_validate", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_02_validate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_03_relations", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_03_relations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_04_custom", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_04_custom.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "05_01_assert", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/05_01_assert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "01_quick_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/01_quick.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_apps_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_apps.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_crate_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_crate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_app_settings_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_app_settings.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_bool_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_01_flag_bool.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_count_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_01_flag_count.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_02_option.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_mult_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_02_option_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_03_positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_mult_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_03_positional_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_04_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands_alt_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_04_subcommands_alt.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_05_default_values_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_05_default_values.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_enum_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_01_enum.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_parse_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_02_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_validate_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_02_validate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_03_relations_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_03_relations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_04_custom_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_04_custom.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "05_01_assert_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/05_01_assert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_augment_args", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/augment_args.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_augment_subcommands", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/augment_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_hand_subcommand", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/hand_subcommand.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_flatten_hand_args", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/flatten_hand_args.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "pacman", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/pacman.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "git", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/git.rs", - "test": false - } - ], - "version": "4.2.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.67", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "clap_lex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "strsim", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "terminal_size", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicase", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-width", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "color-print", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "shlex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.77", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "color-auto", - "diff", - "examples" - ], - "kind": "dev", - "name": "trycmd", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.15", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unic-emoji-char", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "documentation": null, - "edition": "2021", - "features": { - "cargo": [ - "dep:once_cell" - ], - "color": [ - "dep:anstream" - ], - "debug": [ - "dep:backtrace" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [], - "env": [], - "error-context": [], - "help": [], - "std": [ - "anstyle/std" - ], - "string": [], - "suggestions": [ - "dep:strsim", - "error-context" - ], - "unicode": [ - "dep:unicode-width", - "dep:unicase" - ], - "unstable-doc": [ - "cargo", - "wrap_help", - "env", - "unicode", - "string", - "unstable-styles" - ], - "unstable-styles": [ - "color" - ], - "unstable-v5": [ - "deprecated" - ], - "usage": [], - "wrap_help": [ - "help", - "dep:terminal_size" - ] - }, - "homepage": null, - "id": "clap_builder 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_builder-4.2.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "name": "clap_builder", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap_builder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_builder-4.2.7/src/lib.rs", - "test": true - } - ], - "version": "4.2.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Minimal, flexible command line parser", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "clap_lex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_lex-0.4.1/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 4, - "file": "README.md", - "prerelease": true, - "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", - "search": "github.com/clap-rs/clap/blob/[^/]+/" - } - ] - } - }, - "name": "clap_lex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap/tree/master/clap_lex", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap_lex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_lex-0.4.1/src/lib.rs", - "test": true - } - ], - "version": "0.4.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Global override of color control", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "colorchoice", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "colorchoice", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clippy", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "commoncrypto-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Idiomatic Rust wrappers for Mac OS X's CommonCrypto library", - "documentation": "https://docs.rs/commoncrypto", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "lint": [ - "clippy" - ] - }, - "homepage": null, - "id": "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest", - "osx", - "commoncrypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/Cargo.toml", - "name": "commoncrypto", - "publish": null, - "readme": null, - "repository": "https://github.com/malept/rust-commoncrypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "commoncrypto", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "hash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/tests/hash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "pbkdf2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/tests/pbkdf2.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clippy", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "FFI bindings to Mac OS X's CommonCrypto library", - "documentation": "https://docs.rs/commoncrypto-sys", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "lint": [ - "clippy" - ] - }, - "homepage": null, - "id": "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest", - "osx", - "commoncrypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/Cargo.toml", - "name": "commoncrypto-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/malept/rust-commoncrypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "commoncrypto-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "hash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/tests/hash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "pbkdf2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/tests/pbkdf2.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", - "documentation": "https://docs.rs/const-oid", - "edition": "2021", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "db": [], - "std": [] - }, - "homepage": null, - "id": "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iso", - "iec", - "itu", - "oid" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "const-oid", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", - "rust_version": "^1.57", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "const-oid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/tests/lib.rs", - "test": true - } - ], - "version": "0.9.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "os::macos-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "chrono", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "core-foundation-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "uuid", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Bindings to Core Foundation for macOS", - "documentation": null, - "edition": "2015", - "features": { - "chrono": [ - "dep:chrono" - ], - "mac_os_10_7_support": [ - "core-foundation-sys/mac_os_10_7_support" - ], - "mac_os_10_8_features": [ - "core-foundation-sys/mac_os_10_8_features" - ], - "uuid": [ - "dep:uuid" - ], - "with-chrono": [ - "chrono" - ], - "with-uuid": [ - "uuid" - ] - }, - "homepage": "https://github.com/servo/core-foundation-rs", - "id": "core-foundation 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macos", - "framework", - "objc" - ], - "license": "MIT / Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "name": "core-foundation", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "core-foundation", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "use_macro_outside_crate", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/tests/use_macro_outside_crate.rs", - "test": true - } - ], - "version": "0.9.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Servo Project Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Bindings to Core Foundation for macOS", - "documentation": null, - "edition": "2015", - "features": { - "mac_os_10_7_support": [], - "mac_os_10_8_features": [] - }, - "homepage": "https://github.com/servo/core-foundation-rs", - "id": "core-foundation-sys 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT / Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "name": "core-foundation-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "core-foundation-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.4/src/lib.rs", - "test": true - } - ], - "version": "0.8.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "hardware-support", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-linux-android", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", - "uses_default_features": true - } - ], - "description": "Lightweight runtime CPU feature detection for x86/x86_64 and aarch64 with\nno_std support and support for mobile targets including Android and iOS\n", - "documentation": "https://docs.rs/cpufeatures", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cpuid", - "target-feature" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/Cargo.toml", - "name": "cpufeatures", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cpufeatures", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "x86", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/tests/x86.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "aarch64", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/tests/aarch64.rs", - "test": true - } - ], - "version": "0.2.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "percent-encoding", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Helpers for interacting with crates.io\n", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/crates-io/Cargo.toml", - "name": "crates-io", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "crates_io", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/crates/crates-io/lib.rs", - "test": true - } - ], - "version": "0.36.0" - }, - "source": "Foreign" - }, - { - "package": { - "authors": [ - "Sam Rijs ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "documentation": null, - "edition": "2015", - "features": { - "default": [ - "std" - ], - "nightly": [], - "std": [] - }, - "homepage": null, - "id": "crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "checksum", - "crc", - "crc32", - "simd", - "fast" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/Cargo.toml", - "name": "crc32fast", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/srijs/rust-crc32fast", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "crc32fast", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/build.rs", - "test": false - } - ], - "version": "1.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "algorithms", - "cryptography", - "data-structures", - "mathematics", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "der", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "generic-array", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rlp", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "html_reports" - ], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-bigint", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-integer", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-traits", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_chacha", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of a big integer library which has been designed from\nthe ground-up for use in cryptographic applications. Provides constant-time,\nno_std-friendly implementations of modern formulas using const generics.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [], - "default": [ - "rand" - ], - "der": [ - "dep:der" - ], - "generic-array": [ - "dep:generic-array" - ], - "rand": [ - "rand_core/std" - ], - "rand_core": [ - "dep:rand_core" - ], - "rlp": [ - "dep:rlp" - ], - "serde": [ - "dep:serdect" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "crypto-bigint 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "arbitrary", - "crypto", - "bignum", - "integer", - "precision" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "crypto-bigint", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/crypto-bigint", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "crypto-bigint", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "const_residue", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/const_residue.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "impl_modulus", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/impl_modulus.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "proptests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/proptests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/benches/bench.rs", - "test": false - } - ], - "version": "0.5.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "more_lengths" - ], - "kind": "normal", - "name": "generic-array", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Common cryptographic traits", - "documentation": "https://docs.rs/crypto-common", - "edition": "2018", - "features": { - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [] - }, - "homepage": null, - "id": "crypto-common 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "traits" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "crypto-common", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crypto-common", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs", - "test": true - } - ], - "version": "0.1.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "commoncrypto", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(target_os = \"windows\", target_os = \"macos\", target_os = \"ios\")))", - "uses_default_features": true - }, - { - "features": [ - "minwindef", - "wincrypt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"windows\")", - "uses_default_features": true - } - ], - "description": "A wrapper for OS-level cryptographic hash functions", - "documentation": "https://docs.rs/crypto-hash", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "crypto-hash 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-hash-0.3.4/Cargo.toml", - "name": "crypto-hash", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/malept/crypto-hash", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "crypto-hash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-hash-0.3.4/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Frank Denis " - ], - "categories": [ - "no-std", - "cryptography", - "encoding" - ], - "default_run": null, - "dependencies": [], - "description": "Constant-time hex and base64 codecs from libsodium reimplemented in Rust", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/jedisct1/rust-ct-codecs", - "id": "ct-codecs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "base64", - "hex", - "crypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ct-codecs-1.1.1/Cargo.toml", - "name": "ct-codecs", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-ct-codecs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ct-codecs", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ct-codecs-1.1.1/src/lib.rs", - "test": true - } - ], - "version": "1.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "api-bindings", - "web-programming::http-client" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "curl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "socket2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "mio", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "mio-extras", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-probe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "schannel", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [ - "libloaderapi", - "wincrypt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "Rust bindings to libcurl for making HTTP requests", - "documentation": "https://docs.rs/curl", - "edition": "2018", - "features": { - "default": [ - "ssl" - ], - "force-system-lib-on-osx": [ - "curl-sys/force-system-lib-on-osx" - ], - "http2": [ - "curl-sys/http2" - ], - "mesalink": [ - "curl-sys/mesalink" - ], - "ntlm": [ - "curl-sys/ntlm" - ], - "openssl-probe": [ - "dep:openssl-probe" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "poll_7_68_0": [ - "curl-sys/poll_7_68_0" - ], - "protocol-ftp": [ - "curl-sys/protocol-ftp" - ], - "rustls": [ - "curl-sys/rustls" - ], - "spnego": [ - "curl-sys/spnego" - ], - "ssl": [ - "openssl-sys", - "openssl-probe", - "curl-sys/ssl" - ], - "static-curl": [ - "curl-sys/static-curl" - ], - "static-ssl": [ - "curl-sys/static-ssl" - ], - "upkeep_7_62_0": [ - "curl-sys/upkeep_7_62_0" - ], - "zlib-ng-compat": [ - "curl-sys/zlib-ng-compat", - "static-curl" - ] - }, - "homepage": "https://github.com/alexcrichton/curl-rust", - "id": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/Cargo.toml", - "name": "curl", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/curl-rust", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "curl", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "https", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/https.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ssl_proxy", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/ssl_proxy.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ssl_cert_blob", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/ssl_cert_blob.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "aws_sigv4", - "required-features": [ - "static-curl", - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/aws_sigv4.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "multi-dl", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/multi-dl.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "doh", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/doh.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "atexit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/atexit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "post", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/post.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "multi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/multi.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "easy", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/easy.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "protocols", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/protocols.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/build.rs", - "test": false - } - ], - "version": "0.4.44" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libnghttp2-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": "normal", - "name": "libz-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "no_log_capture" - ], - "kind": "normal", - "name": "rustls-ffi", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [ - "winsock2", - "ws2def" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libcurl library", - "documentation": "https://docs.rs/curl-sys", - "edition": "2018", - "features": { - "default": [ - "ssl" - ], - "force-system-lib-on-osx": [], - "http2": [ - "libnghttp2-sys" - ], - "libnghttp2-sys": [ - "dep:libnghttp2-sys" - ], - "mesalink": [], - "ntlm": [], - "openssl-sys": [ - "dep:openssl-sys" - ], - "poll_7_68_0": [], - "protocol-ftp": [], - "rustls": [ - "rustls-ffi" - ], - "rustls-ffi": [ - "dep:rustls-ffi" - ], - "spnego": [], - "ssl": [ - "openssl-sys" - ], - "static-curl": [], - "static-ssl": [ - "openssl-sys/vendored" - ], - "upkeep_7_62_0": [], - "windows-static-ssl": [], - "zlib-ng-compat": [ - "libz-sys/zlib-ng", - "static-curl" - ] - }, - "homepage": null, - "id": "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": "curl", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/Cargo.toml", - "name": "curl-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/alexcrichton/curl-rust", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "curl_sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/build.rs", - "test": false - } - ], - "version": "0.4.61+curl-8.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "const-oid", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "der_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "flagset", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "pem-rfc7468", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "time", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "arbitrary": [ - "dep:arbitrary", - "const-oid?/arbitrary", - "std" - ], - "derive": [ - "dep:der_derive" - ], - "flagset": [ - "dep:flagset" - ], - "oid": [ - "dep:const-oid" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "zeroize" - ], - "real": [], - "std": [ - "alloc" - ], - "time": [ - "dep:time" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "asn1", - "crypto", - "itu", - "pkcs" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "der", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/der", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "der", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "datetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/datetime.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set_of", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/set_of.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/derive.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "pem", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/pem.rs", - "test": true - } - ], - "version": "0.7.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "blobby", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "block-buffer", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "const-oid", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crypto-common", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Traits for cryptographic hash functions and message authentication codes", - "documentation": "https://docs.rs/digest", - "edition": "2018", - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-buffer": [ - "dep:block-buffer" - ], - "const-oid": [ - "dep:const-oid" - ], - "core-api": [ - "block-buffer" - ], - "default": [ - "core-api" - ], - "dev": [ - "blobby" - ], - "mac": [ - "subtle" - ], - "oid": [ - "const-oid" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "homepage": null, - "id": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "digest", - "crypto", - "hash" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "digest", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "digest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs", - "test": true - } - ], - "version": "0.10.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "der", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "digest", - "sec1" - ], - "kind": "normal", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rfc6979", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "rand_core" - ], - "kind": "normal", - "name": "signature", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0, <2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm\n(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing\nRFC6979 deterministic signatures as well as support for added entropy\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "elliptic-curve/alloc", - "signature/alloc" - ], - "arithmetic": [ - "elliptic-curve/arithmetic" - ], - "default": [ - "digest" - ], - "der": [ - "dep:der" - ], - "dev": [ - "arithmetic", - "digest", - "elliptic-curve/dev", - "hazmat" - ], - "digest": [ - "dep:digest", - "signature/digest" - ], - "hazmat": [], - "pem": [ - "elliptic-curve/pem", - "pkcs8" - ], - "pkcs8": [ - "digest", - "elliptic-curve/pkcs8", - "der" - ], - "rfc6979": [ - "dep:rfc6979" - ], - "serde": [ - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "sha2": [ - "dep:sha2" - ], - "signing": [ - "arithmetic", - "digest", - "hazmat", - "rfc6979" - ], - "std": [ - "alloc", - "elliptic-curve/std", - "signature/std" - ], - "verifying": [ - "arithmetic", - "digest", - "hazmat" - ] - }, - "homepage": null, - "id": "ecdsa 0.16.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "nist", - "secp256k1", - "signature" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "ecdsa", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/ecdsa", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "ecdsa", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/tests/lib.rs", - "test": true - } - ], - "version": "0.16.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Frank Denis " - ], - "categories": [ - "algorithms", - "cryptography", - "no-std", - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ct-codecs", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ed25519", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "getrandom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ct-codecs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A small, self-contained, wasm-friendly Ed25519 implementation", - "documentation": null, - "edition": "2018", - "features": { - "blind-keys": [], - "ct-codecs": [ - "dep:ct-codecs" - ], - "default": [ - "random", - "std", - "x25519", - "pem" - ], - "disable-signatures": [], - "ed25519": [ - "dep:ed25519" - ], - "getrandom": [ - "dep:getrandom" - ], - "opt_size": [], - "pem": [ - "ct-codecs" - ], - "random": [ - "getrandom" - ], - "self-verify": [], - "std": [], - "traits": [ - "ed25519" - ], - "x25519": [] - }, - "homepage": "https://github.com/jedisct1/rust-ed25519-compact", - "id": "ed25519-compact 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ed25519", - "x25519", - "eddsa", - "signature" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ed25519-compact-2.0.4/Cargo.toml", - "name": "ed25519-compact", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-ed25519-compact", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ed25519-compact", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ed25519-compact-2.0.4/src/lib.rs", - "test": true - } - ], - "version": "2.0.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "homepage": null, - "id": "either 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "data-structure", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "either", - "publish": null, - "readme": "README-crates.io.md", - "repository": "https://github.com/bluss/either", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "either", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.1/src/lib.rs", - "test": true - } - ], - "version": "1.8.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base16ct", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "base64ct", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "rand_core", - "generic-array", - "zeroize" - ], - "kind": "normal", - "name": "crypto-bigint", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ff", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "zeroize" - ], - "kind": "normal", - "name": "generic-array", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "group", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "hex-literal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hkdf", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "pem-rfc7468", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pkcs8", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "subtle", - "zeroize" - ], - "kind": "normal", - "name": "sec1", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha3", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "General purpose Elliptic Curve Cryptography (ECC) support, including types\nand traits for representing various elliptic curve forms, scalars, points,\nand public/secret keys composed thereof.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base16ct/alloc", - "ff?/alloc", - "group?/alloc", - "pkcs8?/alloc", - "sec1?/alloc", - "zeroize/alloc" - ], - "arithmetic": [ - "group" - ], - "bits": [ - "arithmetic", - "ff/bits" - ], - "default": [ - "arithmetic" - ], - "dev": [ - "arithmetic", - "dep:hex-literal", - "pem", - "pkcs8" - ], - "digest": [ - "dep:digest" - ], - "ecdh": [ - "arithmetic", - "digest", - "dep:hkdf" - ], - "ff": [ - "dep:ff" - ], - "group": [ - "dep:group", - "ff" - ], - "hash2curve": [ - "arithmetic", - "digest" - ], - "hazmat": [], - "jwk": [ - "dep:base64ct", - "dep:serde_json", - "alloc", - "serde", - "zeroize/alloc" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "arithmetic", - "pkcs8", - "sec1/pem" - ], - "pkcs8": [ - "dep:pkcs8", - "sec1" - ], - "sec1": [ - "dep:sec1" - ], - "serde": [ - "dep:serdect", - "alloc", - "pkcs8", - "sec1/serde" - ], - "std": [ - "alloc", - "rand_core/std", - "pkcs8?/std", - "sec1?/std" - ], - "voprf": [ - "digest" - ] - }, - "homepage": null, - "id": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "elliptic", - "weierstrass" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "bits", - "ecdh", - "hash2curve", - "jwk", - "pem", - "std", - "voprf" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "elliptic-curve", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/elliptic-curve", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "elliptic-curve", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "pkcs8", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/tests/pkcs8.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "secret_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/tests/secret_key.rs", - "test": true - } - ], - "version": "0.13.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "perf" - ], - "kind": "normal", - "name": "regex", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", - "documentation": null, - "edition": "2021", - "features": { - "auto-color": [ - "dep:is-terminal", - "color" - ], - "color": [ - "dep:termcolor" - ], - "default": [ - "auto-color", - "humantime", - "regex" - ], - "humantime": [ - "dep:humantime" - ], - "regex": [ - "dep:regex" - ] - }, - "homepage": null, - "id": "env_logger 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "logging", - "log", - "logger" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "env_logger", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger/", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "env_logger", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_default_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_default_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "in_tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/in_tests.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "default", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/default.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_logger", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_logger.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "filters_from_code", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/filters_from_code.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "direct_logger", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/direct_logger.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "syslog_friendly_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/syslog_friendly_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "regexp_filter", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/regexp_filter.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "log-in-log", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/log-in-log.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "log_tls_dtors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/log_tls_dtors.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "init-twice-retains-filter", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/init-twice-retains-filter.rs", - "test": true - } - ], - "version": "0.10.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Chris Wong " - ], - "categories": [ - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "errno-dragonfly", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"dragonfly\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cross-platform interface to the `errno` variable.", - "documentation": "https://docs.rs/errno", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "errno 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.3.1/Cargo.toml", - "name": "errno", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Michael Neumann " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Exposes errno functionality to stable Rust on DragonFlyBSD", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dragonfly" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml", - "name": "errno-dragonfly", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mneumann/errno-dragonfly-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno-dragonfly", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs", - "test": false - } - ], - "version": "0.1.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wyhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [ - "js" - ], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [ - "wasm-bindgen" - ], - "kind": "dev", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - } - ], - "description": "A simple and fast random number generator", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "fastrand 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/Cargo.toml", - "name": "fastrand", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "rust_version": "^1.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fastrand", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/tests/smoke.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "char", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/tests/char.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/benches/bench.rs", - "test": false - } - ], - "version": "1.9.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sean Bowe ", - "Jack Grigg " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "byteorder", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "ff_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "i128" - ], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "blake2b_simd", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Library for building and interfacing with finite fields", - "documentation": "https://docs.rs/ff/", - "edition": "2021", - "features": { - "alloc": [], - "bits": [ - "bitvec" - ], - "bitvec": [ - "dep:bitvec" - ], - "byteorder": [ - "dep:byteorder" - ], - "default": [ - "bits", - "std" - ], - "derive": [ - "byteorder", - "ff_derive" - ], - "derive_bits": [ - "bits", - "ff_derive/bits" - ], - "ff_derive": [ - "dep:ff_derive" - ], - "std": [ - "alloc" - ] - }, - "homepage": "https://github.com/zkcrypto/ff", - "id": "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "ff", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/zkcrypto/ff", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "ff", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/tests/derive.rs", - "test": true - } - ], - "version": "0.13.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Fiat Crypto library authors " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Fiat-crypto generated Rust", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/mit-plv/fiat-crypto", - "id": "fiat-crypto 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0 OR BSD-1-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.20/Cargo.toml", - "name": "fiat-crypto", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mit-plv/fiat-crypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fiat-crypto", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.20/src/lib.rs", - "test": true - } - ], - "version": "0.1.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/filetime", - "id": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "timestamp", - "mtime" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.21/Cargo.toml", - "name": "filetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "filetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.21/src/lib.rs", - "test": true - } - ], - "version": "0.2.21" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cloudflare-zlib-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crc32fast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libz-ng-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libz-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "with-alloc" - ], - "kind": "normal", - "name": "miniz_oxide", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "with-alloc" - ], - "kind": "normal", - "name": "miniz_oxide", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", - "uses_default_features": false - } - ], - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", - "documentation": "https://docs.rs/flate2", - "edition": "2018", - "features": { - "any_zlib": [], - "cloudflare-zlib-sys": [ - "dep:cloudflare-zlib-sys" - ], - "cloudflare_zlib": [ - "any_zlib", - "cloudflare-zlib-sys" - ], - "default": [ - "rust_backend" - ], - "libz-ng-sys": [ - "dep:libz-ng-sys" - ], - "libz-sys": [ - "dep:libz-sys" - ], - "miniz-sys": [ - "rust_backend" - ], - "miniz_oxide": [ - "dep:miniz_oxide" - ], - "rust_backend": [ - "miniz_oxide" - ], - "zlib": [ - "any_zlib", - "libz-sys" - ], - "zlib-default": [ - "any_zlib", - "libz-sys/default" - ], - "zlib-ng": [ - "any_zlib", - "libz-ng-sys" - ], - "zlib-ng-compat": [ - "zlib", - "libz-sys/zlib-ng" - ] - }, - "homepage": "https://github.com/rust-lang/flate2-rs", - "id": "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "gzip", - "deflate", - "zlib", - "zlib-ng", - "encoding" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "flate2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/flate2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "flate2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzmultidecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzmultidecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "decompress_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/decompress_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzmultidecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzmultidecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzbuilder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzbuilder.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "compress_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/compress_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-bufread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zero-write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/zero-write.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "gunzip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/gunzip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "early-flush", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/early-flush.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "empty-read", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/empty-read.rs", - "test": true - } - ], - "version": "1.0.26" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Fowler–Noll–Vo hash function", - "documentation": "https://doc.servo.org/fnv/", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0 / MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/Cargo.toml", - "name": "fnv", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/rust-fnv", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "fnv", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs", - "test": true - } - ], - "version": "1.0.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "foreign-types-shared", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A framework for Rust wrappers over C APIs", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/Cargo.toml", - "name": "foreign-types", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/foreign-types", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "foreign-types", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/src/lib.rs", - "test": true - } - ], - "version": "0.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "An internal crate used by foreign-types", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/Cargo.toml", - "name": "foreign-types-shared", - "publish": null, - "readme": null, - "repository": "https://github.com/sfackler/foreign-types", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "foreign-types-shared", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "percent-encoding", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.1.0/Cargo.toml", - "name": "form_urlencoded", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "form_urlencoded", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.1.0/src/lib.rs", - "test": false - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "kennytm " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Forwards a byte string with ANSI escape code to a termcolor terminal", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "fwdansi 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "windows", - "console", - "terminal", - "color" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/Cargo.toml", - "name": "fwdansi", - "publish": null, - "readme": null, - "repository": "https://github.com/kennytm/fwdansi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "fwdansi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "run-rustc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/examples/run-rustc.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "colors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/examples/colors.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/tests/tests.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "version_check", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generic types implementing functionality of arrays", - "documentation": "http://fizyk20.github.io/generic-array/generic_array/", - "edition": "2015", - "features": { - "more_lengths": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "generic", - "array" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - } - }, - "name": "generic-array", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "generic_array", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/build.rs", - "test": false - } - ], - "version": "0.14.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.62", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.139", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": false - } - ], - "description": "A small cross-platform library for retrieving random data from system source", - "documentation": "https://docs.rs/getrandom", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "custom": [], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-sys": [ - "dep:js-sys" - ], - "rdrand": [], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "libc/rustc-dep-of-std", - "wasi/rustc-dep-of-std" - ], - "std": [], - "test-in-browser": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "homepage": null, - "id": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "custom" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "getrandom", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "getrandom", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "normal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/normal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "rdrand", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/rdrand.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "custom", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/custom.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/benches/buffer.rs", - "test": false - } - ], - "version": "0.2.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [ - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libgit2-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "paste", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "structopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-probe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - } - ], - "description": "Bindings to libgit2 for interoperating with git repositories. This library is\nboth threadsafe and memory safe and allows both reading and writing git\nrepositories.\n", - "documentation": "https://docs.rs/git2", - "edition": "2018", - "features": { - "default": [ - "ssh", - "https", - "ssh_key_from_memory" - ], - "https": [ - "libgit2-sys/https", - "openssl-sys", - "openssl-probe" - ], - "openssl-probe": [ - "dep:openssl-probe" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "ssh": [ - "libgit2-sys/ssh" - ], - "ssh_key_from_memory": [ - "libgit2-sys/ssh_key_from_memory" - ], - "unstable": [], - "vendored-libgit2": [ - "libgit2-sys/vendored" - ], - "vendored-openssl": [ - "openssl-sys/vendored", - "libgit2-sys/vendored-openssl" - ], - "zlib-ng-compat": [ - "libgit2-sys/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "git" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/Cargo.toml", - "name": "git2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "git2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "rev-list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/rev-list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "rev-parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/rev-parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "cat-file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/cat-file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "fetch", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/fetch.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "status", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/status.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "diff", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/diff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ls-remote", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/ls-remote.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "log", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/log.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "tag", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/tag.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "init", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/init.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "pull", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/pull.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "blame", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/blame.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "clone", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/clone.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "add", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/add.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "get_extensions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/get_extensions.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "add_extensions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/add_extensions.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "global_state", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/global_state.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "remove_extensions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/remove_extensions.rs", - "test": true - } - ], - "version": "0.16.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "curl", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.33", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "git2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "url", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "civet", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "conduit", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "conduit-git-http-backend", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Backend for an HTTP transport in libgit2 powered by libcurl.\n\nIntended to be used with the git2 crate.\n", - "documentation": "https://docs.rs/git2-curl", - "edition": "2018", - "features": { - "zlib-ng-compat": [ - "git2/zlib-ng-compat", - "curl/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "git2-curl 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/Cargo.toml", - "name": "git2-curl", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "git2-curl", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/tests/all.rs", - "test": true - } - ], - "version": "0.17.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Support for matching file paths against Unix shell style patterns.\n", - "documentation": "https://docs.rs/glob/0.3.1", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/rust-lang/glob", - "id": "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/Cargo.toml", - "name": "glob", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "glob", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "glob-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/tests/glob-std.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "aho-corasick", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "normal", - "name": "bstr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "perf", - "std" - ], - "kind": "normal", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.104", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", - "documentation": "https://docs.rs/globset", - "edition": "2018", - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd-accel": [] - }, - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "id": "globset 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "regex", - "glob", - "multiple", - "set", - "pattern" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/Cargo.toml", - "name": "globset", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "globset", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/benches/bench.rs", - "test": false - } - ], - "version": "0.4.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sean Bowe ", - "Jack Grigg " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ff", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "memuse", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_xorshift", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Elliptic curve group traits and utilities", - "documentation": "https://docs.rs/group/", - "edition": "2021", - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "memuse": [ - "dep:memuse" - ], - "rand": [ - "dep:rand" - ], - "rand_xorshift": [ - "dep:rand_xorshift" - ], - "tests": [ - "alloc", - "rand", - "rand_xorshift" - ], - "wnaf-memuse": [ - "alloc", - "memuse" - ] - }, - "homepage": "https://github.com/zkcrypto/group", - "id": "group 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/group-0.13.0/Cargo.toml", - "name": "group", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/zkcrypto/group", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "group", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/group-0.13.0/src/lib.rs", - "test": true - } - ], - "version": "0.13.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ahash", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bumpalo", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust port of Google's SwissTable hash map", - "documentation": null, - "edition": "2021", - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "name": "hashbrown", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "rust_version": "^1.56.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hashbrown", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "rayon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "hasher", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "insert_unique_unchecked", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs", - "test": false - } - ], - "version": "0.12.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Hermit system calls definitions.", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/Cargo.toml", - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/rusty-hermit", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "KokaKiwi " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Encoding and decoding data into/from hexadecimal representation.", - "documentation": "https://docs.rs/hex/", - "edition": "2015", - "features": { - "benchmarks": [] - }, - "homepage": null, - "id": "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/Cargo.toml", - "name": "hex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "hex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/src/lib.rs", - "test": true - } - ], - "version": "0.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "KokaKiwi " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "faster-hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustc-hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Encoding and decoding data into/from hexadecimal representation.", - "documentation": "https://docs.rs/hex/", - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "no_std", - "hex" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "version-number", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/tests/version-number.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "hex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/benches/hex.rs", - "test": false - } - ], - "version": "0.4.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "hmac", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "blobby", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha-1", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)", - "documentation": null, - "edition": "2018", - "features": { - "std": [ - "hmac/std" - ] - }, - "homepage": "https://github.com/RustCrypto/KDFs/", - "id": "hkdf 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "HKDF", - "KDF" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hkdf", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/KDFs/", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hkdf", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/benches/mod.rs", - "test": false - } - ], - "version": "0.12.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "mac" - ], - "kind": "normal", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "md-5", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha-1", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "streebog", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "documentation": "https://docs.rs/hmac", - "edition": "2018", - "features": { - "reset": [], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "mac", - "hmac", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hmac", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/MACs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hmac", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/tests/mod.rs", - "test": true - } - ], - "version": "0.12.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Brian Anderson " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_UI_Shell" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Shared definitions of home directories.", - "documentation": "https://docs.rs/home", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "home 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.5/Cargo.toml", - "name": "home", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "home", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.5/src/lib.rs", - "test": true - } - ], - "version": "0.5.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "authentication", - "parser-implementations", - "web-programming::http-client" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base64", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.21.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hex", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "http", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "md-5", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "HTTP authentication: parse challenge lists, respond to Basic and Digest challenges. Likely to be extended with server support and additional auth schemes.", - "documentation": null, - "edition": "2018", - "features": { - "base64": [ - "dep:base64" - ], - "basic-scheme": [ - "base64" - ], - "default": [ - "basic-scheme", - "digest-scheme" - ], - "digest": [ - "dep:digest" - ], - "digest-scheme": [ - "digest", - "hex", - "md-5", - "rand", - "sha2" - ], - "hex": [ - "dep:hex" - ], - "http": [ - "dep:http" - ], - "log": [ - "dep:log" - ], - "md-5": [ - "dep:md-5" - ], - "rand": [ - "dep:rand" - ], - "sha2": [ - "dep:sha2" - ], - "trace": [ - "log" - ] - }, - "homepage": null, - "id": "http-auth 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "http", - "authentication", - "digest", - "basic" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "http-auth", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/scottlamb/http-auth", - "rust_version": "^1.57.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "http-auth", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "reqwest", - "required-features": [ - "http" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/examples/reqwest.rs", - "test": false - } - ], - "version": "0.1.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "chrono", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/tailhook/humantime", - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml", - "name": "humantime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_format.rs", - "test": false - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "unicode-bidi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-normalization", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "assert_matches", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tester", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/Cargo.toml", - "name": "idna", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "idna", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/unit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/benches/all.rs", - "test": false - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "globset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "thread_local", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-channel", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", - "documentation": "https://docs.rs/ignore", - "edition": "2018", - "features": { - "simd-accel": [ - "globset/simd-accel" - ] - }, - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "id": "ignore 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "glob", - "ignore", - "gitignore", - "pattern", - "file" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/Cargo.toml", - "name": "ignore", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ignore", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "walk", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/examples/walk.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "gitignore_matched_path_or_any_parents_tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/tests/gitignore_matched_path_or_any_parents_tests.rs", - "test": true - } - ], - "version": "0.4.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitmaps", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "proptest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quickcheck", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_xoshiro", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "refpool", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sized-chunks", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "metrohash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest-derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "version_check", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Immutable collection datatypes (the fast but not thread safe version)", - "documentation": "http://immutable.rs/", - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "debug": [], - "pool": [ - "refpool", - "sized-chunks/refpool" - ], - "proptest": [ - "dep:proptest" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "refpool": [ - "dep:refpool" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": "http://immutable.rs/", - "id": "im-rc 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "immutable", - "persistent", - "hamt", - "b-tree", - "rrb-tree" - ], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "im-rc", - "publish": null, - "readme": "../../README.md", - "repository": "https://github.com/bodil/im-rs", - "rust_version": "^1.46.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "im-rc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/./src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/./build.rs", - "test": false - } - ], - "version": "15.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "raw" - ], - "kind": "normal", - "name": "hashbrown", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quickcheck", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-rayon", - "optional": true, - "path": null, - "registry": null, - "rename": "rustc-rayon", - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fxhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A hash table with consistent order and fast iteration.", - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "homepage": null, - "id": "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hashmap", - "no_std" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "indexmap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "indexmap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "macros_full_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/macros_full_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "quick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "equivalent_trait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/equivalent_trait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "faststring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/benches/faststring.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/build.rs", - "test": false - } - ], - "version": "1.9.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "sebcrozet " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - } - ], - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "documentation": null, - "edition": "2018", - "features": { - "inaccurate": [], - "js-sys": [ - "dep:js-sys" - ], - "now": [], - "stdweb": [ - "dep:stdweb" - ], - "wasm-bindgen": [ - "js-sys", - "wasm-bindgen_rs", - "web-sys" - ], - "wasm-bindgen_rs": [ - "dep:wasm-bindgen_rs" - ], - "web-sys": [ - "dep:web-sys" - ] - }, - "homepage": null, - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "wasm" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml", - "name": "instant", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "instant", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs", - "test": true - } - ], - "version": "0.1.12" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "os", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "fs-err", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "async-std", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "net", - "os-ext" - ], - "kind": "normal", - "name": "mio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io_safety" - ], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "socket2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io-std", - "fs", - "net", - "process" - ], - "kind": "normal", - "name": "tokio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.96", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_System_IO", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A low-level I/O ownership and borrowing library", - "documentation": null, - "edition": "2018", - "features": { - "async-std": [ - "dep:async-std" - ], - "close": [ - "libc", - "hermit-abi", - "windows-sys" - ], - "default": [ - "close" - ], - "fs-err": [ - "dep:fs-err" - ], - "hermit-abi": [ - "dep:hermit-abi" - ], - "libc": [ - "dep:libc" - ], - "mio": [ - "dep:mio" - ], - "os_pipe": [ - "dep:os_pipe" - ], - "socket2": [ - "dep:socket2" - ], - "tokio": [ - "dep:tokio" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "homepage": null, - "id": "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "io" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/Cargo.toml", - "name": "io-lifetimes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/io-lifetimes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "io-lifetimes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/build.rs", - "test": false - } - ], - "version": "1.0.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "atty", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.110", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "termios" - ], - "kind": "normal", - "name": "rustix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.37.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Test whether a given stream is a terminal", - "documentation": "http://docs.rs/is-terminal", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.7/Cargo.toml", - "name": "is-terminal", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "is-terminal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.7/src/lib.rs", - "test": true - } - ], - "version": "0.4.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "either", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "paste", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "permutohedron", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "homepage": null, - "id": "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iterator", - "data-structure", - "zip", - "product", - "group-by" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "name": "itertools", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "itertools", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "iris", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/examples/iris.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_std.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "adaptors_no_collect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/adaptors_no_collect.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "merge_join", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/merge_join.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "flatten_ok", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/flatten_ok.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "peeking_take_while", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/peeking_take_while.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "macros_hygiene", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/macros_hygiene.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tuples", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/tuples.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "quick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "specializations", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/specializations.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_core.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/zip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tuple_combinations", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuple_combinations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tuples", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuples.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "fold_specialization", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/fold_specialization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "combinations_with_replacement", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations_with_replacement.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tree_fold1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tree_fold1.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/bench1.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "combinations", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "powerset", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/powerset.rs", - "test": false - } - ], - "version": "0.10.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "no-panic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast integer primitive to string conversion", - "documentation": "https://docs.rs/itoa", - "edition": "2018", - "features": { - "no-panic": [ - "dep:no-panic" - ] - }, - "homepage": null, - "id": "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "integer" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "itoa", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/itoa", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "itoa", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/benches/bench.rs", - "test": false - } - ], - "version": "1.0.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tokio-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tokio-process", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.50", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "An implementation of the GNU make jobserver for Rust\n", - "documentation": "https://docs.rs/jobserver", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/jobserver-rs", - "id": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/Cargo.toml", - "name": "jobserver", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/jobserver-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "jobserver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "client", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/client.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "server", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/server.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "client-of-myself", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/client-of-myself.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "make-as-a-client", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/make-as-a-client.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "helper", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/helper.rs", - "test": true - } - ], - "version": "0.1.26" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.3.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "Headers", - "Response", - "ResponseInit" - ], - "kind": "dev", - "name": "web-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", - "documentation": "https://docs.rs/js-sys", - "edition": "2018", - "features": {}, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "js-sys 0.3.61 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/Cargo.toml", - "name": "js-sys", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "js-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/tests/wasm/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "headless", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/tests/headless.rs", - "test": true - } - ], - "version": "0.3.61" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Marvin Löbel " - ], - "categories": [ - "no-std", - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "spin", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro for declaring lazily evaluated statics in Rust.", - "documentation": "https://docs.rs/lazy_static", - "edition": "2015", - "features": { - "spin": [ - "dep:spin" - ], - "spin_no_std": [ - "spin" - ] - }, - "homepage": null, - "id": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macro", - "lazy", - "static" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/Cargo.toml", - "name": "lazy_static", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "lazy_static", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "no_std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/no_std.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/test.rs", - "test": true - } - ], - "version": "1.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Nikita Pekin " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "clippy", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library providing a lazily filled Cell struct", - "documentation": "http://indiv0.github.io/lazycell/lazycell/", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "nightly": [], - "nightly-testing": [ - "clippy", - "nightly" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "lazycell 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazycell", - "lazy", - "cell", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/Cargo.toml", - "name": "lazycell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/indiv0/lazycell", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "lazycell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/src/lib.rs", - "test": true - } - ], - "version": "1.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Raw FFI bindings to platform libraries like libc.\n", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/libc", - "id": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "const-extern-fn", - "extra_traits" - ] - } - } - }, - "name": "libc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "const_fn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/tests/const_fn.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/build.rs", - "test": false - } - ], - "version": "0.2.142" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libssh2-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": "normal", - "name": "libz-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "parallel" - ], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libgit2 library", - "documentation": null, - "edition": "2018", - "features": { - "https": [ - "openssl-sys" - ], - "libssh2-sys": [ - "dep:libssh2-sys" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "ssh": [ - "libssh2-sys" - ], - "ssh_key_from_memory": [], - "vendored": [], - "vendored-openssl": [ - "openssl-sys/vendored" - ], - "zlib-ng-compat": [ - "libz-sys/zlib-ng", - "libssh2-sys?/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "git2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/Cargo.toml", - "name": "libgit2-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "libgit2_sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/build.rs", - "test": false - } - ], - "version": "0.14.1+1.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.24", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "FFI bindings for libnghttp2 (nghttp2)\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/nghttp2-rs", - "id": "libnghttp2-sys 0.1.7+1.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "nghttp2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/Cargo.toml", - "name": "libnghttp2-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/nghttp2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libnghttp2-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/examples/smoke.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/build.rs", - "test": false - } - ], - "version": "0.1.7+1.45.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Wez Furlong ", - "Matteo Bigoi " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": "normal", - "name": "libz-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.35", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.35", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libssh2 library", - "documentation": "https://docs.rs/libssh2-sys", - "edition": "2015", - "features": { - "openssl-on-win32": [ - "openssl-sys" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "vendored-openssl": [ - "openssl-sys/vendored" - ], - "zlib-ng-compat": [ - "libz-sys/zlib-ng" - ] - }, - "homepage": null, - "id": "libssh2-sys 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "ssh2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/Cargo.toml", - "name": "libssh2-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/alexcrichton/ssh2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libssh2_sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/build.rs", - "test": false - } - ], - "version": "0.2.23" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cmake", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.44", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "Low-level bindings to the system libz library (also known as zlib).", - "documentation": null, - "edition": "2018", - "features": { - "asm": [], - "cmake": [ - "dep:cmake" - ], - "default": [ - "libc", - "stock-zlib" - ], - "libc": [ - "dep:libc" - ], - "static": [], - "stock-zlib": [], - "zlib-ng": [ - "libc", - "cmake" - ] - }, - "homepage": null, - "id": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "zlib", - "zlib-ng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "z", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/Cargo.toml", - "name": "libz-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libz-sys", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "libz-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/build.rs", - "test": false - } - ], - "version": "1.1.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generated bindings for Linux's userspace API", - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "errno": [], - "general": [], - "ioctl": [], - "netlink": [], - "no_std": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [] - }, - "homepage": null, - "id": "linux-raw-sys 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.3.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "ioctl", - "netlink" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "name": "linux-raw-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "linux-raw-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.3.7/src/lib.rs", - "test": true - } - ], - "version": "0.3.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "development-tools::debugging" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "sval", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "value-bag", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "sval", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "test" - ], - "kind": "dev", - "name": "value-bag", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A lightweight logging facade for Rust\n", - "documentation": "https://docs.rs/log", - "edition": "2015", - "features": { - "kv_unstable": [ - "value-bag" - ], - "kv_unstable_serde": [ - "kv_unstable_std", - "value-bag/serde", - "serde" - ], - "kv_unstable_std": [ - "std", - "kv_unstable", - "value-bag/error" - ], - "kv_unstable_sval": [ - "kv_unstable", - "value-bag/sval", - "sval" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "serde": [ - "dep:serde" - ], - "std": [], - "sval": [ - "dep:sval" - ], - "value-bag": [ - "dep:value-bag" - ] - }, - "homepage": null, - "id": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "logging" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "kv_unstable_std", - "kv_unstable_sval", - "kv_unstable_serde" - ] - } - } - }, - "name": "log", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/log", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "log", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "filters", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/filters.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/macros.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "value", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/benches/value.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs", - "test": false - } - ], - "version": "0.4.17" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Safe interface to memchr.", - "documentation": "https://docs.rs/memchr/", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [ - "dep:libc" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/BurntSushi/memchr", - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memchr", - "char", - "scan", - "strchr", - "string" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml", - "name": "memchr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "memchr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs", - "test": false - } - ], - "version": "2.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Frommi ", - "oyvindln " - ], - "categories": [ - "compression" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "adler", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "simd-adler32", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "documentation": "https://docs.rs/miniz_oxide", - "edition": "2018", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "with-alloc" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "adler/rustc-dep-of-std" - ], - "simd": [ - "simd-adler32" - ], - "simd-adler32": [ - "dep:simd-adler32" - ], - "std": [], - "with-alloc": [] - }, - "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "id": "miniz_oxide 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "zlib", - "miniz", - "deflate", - "encoding" - ], - "license": "MIT OR Zlib OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.7.1/Cargo.toml", - "name": "miniz_oxide", - "publish": null, - "readme": "Readme.md", - "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "miniz_oxide", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.7.1/src/lib.rs", - "test": true - } - ], - "version": "0.7.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_Threading", - "Win32_System_WindowsProgramming" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "socket2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A zero overhead I/O library for Windows, focusing on IOCP and async I/O\nabstractions.\n", - "documentation": "https://docs.rs/miow", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/yoshuawuyts/miow", - "id": "miow 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iocp", - "windows", - "io", - "overlapped" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "miow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/yoshuawuyts/miow", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "miow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.5.0/src/lib.rs", - "test": true - } - ], - "version": "0.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libm", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Numeric traits for generic mathematics", - "documentation": "https://docs.rs/num-traits", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "i128": [], - "libm": [ - "dep:libm" - ], - "std": [] - }, - "homepage": "https://github.com/rust-num/num-traits", - "id": "num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "mathematics", - "numerics" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "name": "num-traits", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-num/num-traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "num-traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "cast", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/tests/cast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs", - "test": false - } - ], - "version": "0.2.15" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "atomic-polyfill", - "optional": true, - "path": null, - "registry": null, - "rename": "atomic_polyfill", - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "critical-section", - "optional": true, - "path": null, - "registry": null, - "rename": "critical_section", - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "parking_lot_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "critical-section", - "optional": false, - "path": null, - "registry": null, - "rename": "critical_section", - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Single assignment cells and lazy values.", - "documentation": "https://docs.rs/once_cell", - "edition": "2021", - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "critical-section" - ], - "atomic_polyfill": [ - "dep:atomic_polyfill" - ], - "critical-section": [ - "critical_section", - "atomic_polyfill" - ], - "critical_section": [ - "dep:critical_section" - ], - "default": [ - "std" - ], - "parking_lot": [ - "parking_lot_core" - ], - "parking_lot_core": [ - "dep:parking_lot_core" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "homepage": null, - "id": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazy", - "static" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "once_cell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "once_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench_acquire", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench_acquire.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench_vs_lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench_vs_lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "reentrant_init_deadlocks", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/reentrant_init_deadlocks.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "regex", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/regex.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "test_synchronization", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/test_synchronization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "it", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/tests/it.rs", - "test": true - } - ], - "version": "1.17.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Brian Bowman " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bstr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"linux\")", - "uses_default_features": true - }, - { - "features": [ - "shellapi" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Open a file or link using the system default program.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "opener 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "open", - "default", - "launcher", - "browser" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/Cargo.toml", - "name": "opener", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Seeker14491/opener", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "opener", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "version-numbers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/tests/version-numbers.rs", - "test": true - } - ], - "version": "0.5.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [ - "cryptography", - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-sys", - "optional": false, - "path": null, - "registry": null, - "rename": "ffi", - "req": "^0.9.87", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "foreign-types", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "openssl-macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "OpenSSL bindings", - "documentation": null, - "edition": "2018", - "features": { - "bindgen": [ - "ffi/bindgen" - ], - "default": [], - "unstable_boringssl": [ - "ffi/unstable_boringssl" - ], - "v101": [], - "v102": [], - "v110": [], - "v111": [], - "vendored": [ - "ffi/vendored" - ] - }, - "homepage": null, - "id": "openssl 0.10.52 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "tls", - "ssl", - "dtls" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/Cargo.toml", - "name": "openssl", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "openssl", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "mk_certs", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/examples/mk_certs.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/build.rs", - "test": false - } - ], - "version": "0.10.52" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Internal macros used by the openssl crate.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "openssl-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-macros-0.1.1/Cargo.toml", - "name": "openssl-macros", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "openssl-macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-macros-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/openssl-probe", - "id": "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/Cargo.toml", - "name": "openssl-probe", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/openssl-probe", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "openssl-probe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "probe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/examples/probe.rs", - "test": false - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Steven Fackler " - ], - "categories": [ - "cryptography", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bssl-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "experimental" - ], - "kind": "build", - "name": "bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "openssl-src", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^111", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "FFI bindings to OpenSSL", - "documentation": null, - "edition": "2018", - "features": { - "bindgen": [ - "dep:bindgen" - ], - "bssl-sys": [ - "dep:bssl-sys" - ], - "openssl-src": [ - "dep:openssl-src" - ], - "unstable_boringssl": [ - "bssl-sys" - ], - "vendored": [ - "openssl-src" - ] - }, - "homepage": null, - "id": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": "openssl", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/Cargo.toml", - "metadata": { - "pkg-config": { - "openssl": "1.0.1" - } - }, - "name": "openssl-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "openssl-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-main", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/build/main.rs", - "test": false - } - ], - "version": "0.9.87" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jonathan Reem ", - "Matt Brubeck " - ], - "categories": [ - "science", - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "num-traits", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "proptest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "size_32" - ], - "kind": "normal", - "name": "rkyv", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "schemars", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Wrappers for total ordering on floats", - "documentation": null, - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std" - ], - "proptest": [ - "dep:proptest" - ], - "rand": [ - "dep:rand" - ], - "randtest": [ - "rand/std", - "rand/std_rng" - ], - "rkyv": [ - "dep:rkyv" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "num-traits/std" - ] - }, - "homepage": null, - "id": "ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "no_std", - "ord", - "f64", - "f32", - "sort" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/Cargo.toml", - "name": "ordered-float", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/reem/rust-ordered-float", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ordered-float", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/tests/test.rs", - "test": true - } - ], - "version": "2.10.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "brycx " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ct-codecs", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "fiat-crypto", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "getrandom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.124", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck_macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Usable, easy and safe pure-Rust crypto", - "documentation": "https://docs.rs/orion", - "edition": "2021", - "features": { - "alloc": [], - "ct-codecs": [ - "dep:ct-codecs" - ], - "default": [ - "safe_api" - ], - "getrandom": [ - "dep:getrandom" - ], - "safe_api": [ - "getrandom", - "ct-codecs" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "orion 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "aead", - "hash", - "mac" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "orion", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/orion-rs/orion", - "rust_version": "^1.59", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "orion", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/benches/bench.rs", - "test": false - } - ], - "version": "0.17.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jan Schulte ", - "Stanislav Tkach " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "minwindef", - "ntdef", - "ntstatus", - "sysinfoapi", - "winnt", - "winuser", - "libloaderapi", - "processthreadsapi", - "winerror", - "winreg" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Detect the operating system type and version.", - "documentation": "https://docs.rs/os_info", - "edition": "2018", - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/stanislav-tkach/os_info", - "id": "os_info 3.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "os", - "os_type", - "os_version", - "os_info" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/Cargo.toml", - "name": "os_info", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/stanislav-tkach/os_info", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "os_info", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "print_version", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/examples/print_version.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/tests/basic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "md_doc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/tests/md_doc.rs", - "test": true - } - ], - "version": "3.7.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers", - "Frank Denis " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "der" - ], - "kind": "normal", - "name": "ecdsa", - "optional": true, - "path": null, - "registry": null, - "rename": "ecdsa-core", - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "hazmat", - "sec1" - ], - "kind": "normal", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "hex-literal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "primeorder", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "blobby", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "ecdsa", - "optional": false, - "path": null, - "registry": null, - "rename": "ecdsa-core", - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "getrandom" - ], - "kind": "dev", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of the NIST P-384 (a.k.a. secp384r1) elliptic curve\nas defined in SP 800-186 with support for ECDH, ECDSA signing/verification,\nand general purpose curve arithmetic support.\n", - "documentation": "https://docs.rs/p384", - "edition": "2021", - "features": { - "alloc": [ - "ecdsa-core?/alloc", - "elliptic-curve/alloc" - ], - "arithmetic": [ - "elliptic-curve/arithmetic", - "elliptic-curve/digest" - ], - "bits": [ - "arithmetic", - "elliptic-curve/bits" - ], - "default": [ - "arithmetic", - "ecdh", - "ecdsa", - "pem", - "std" - ], - "digest": [ - "ecdsa-core/digest", - "ecdsa-core/hazmat" - ], - "ecdh": [ - "arithmetic", - "elliptic-curve/ecdh" - ], - "ecdsa": [ - "arithmetic", - "ecdsa-core/signing", - "ecdsa-core/verifying", - "sha384" - ], - "ecdsa-core": [ - "dep:ecdsa-core" - ], - "expose-field": [ - "arithmetic" - ], - "hash2curve": [ - "arithmetic", - "elliptic-curve/hash2curve" - ], - "hex-literal": [ - "dep:hex-literal" - ], - "jwk": [ - "elliptic-curve/jwk" - ], - "pem": [ - "elliptic-curve/pem", - "ecdsa-core/pem", - "pkcs8" - ], - "pkcs8": [ - "ecdsa-core/pkcs8", - "elliptic-curve/pkcs8" - ], - "serde": [ - "ecdsa-core/serde", - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "sha2": [ - "dep:sha2" - ], - "sha384": [ - "digest", - "sha2" - ], - "std": [ - "alloc", - "ecdsa-core?/std", - "elliptic-curve/std" - ], - "test-vectors": [ - "hex-literal" - ], - "voprf": [ - "elliptic-curve/voprf", - "sha2" - ] - }, - "homepage": null, - "id": "p384 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "nist", - "secp384r1" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "p384", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/elliptic-curves/tree/master/p384", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "p384", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "projective", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/tests/projective.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "affine", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/tests/affine.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "field", - "required-features": [ - "expose-field" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/benches/field.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "scalar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/benches/scalar.rs", - "test": false - } - ], - "version": "0.13.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "brycx " - ], - "categories": [ - "cryptography", - "authentication" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ct-codecs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "random" - ], - "kind": "normal", - "name": "ed25519-compact", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "js" - ], - "kind": "normal", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "orion", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.17.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "p384", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "getrandom" - ], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "regex", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": "normal", - "name": "time", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "PASETO: Platform-Agnostic Security Tokens (in Rust)", - "documentation": "https://docs.rs/pasetors", - "edition": "2018", - "features": { - "default": [ - "std", - "v4", - "paserk" - ], - "ed25519-compact": [ - "dep:ed25519-compact" - ], - "orion": [ - "dep:orion" - ], - "p384": [ - "dep:p384" - ], - "paserk": [ - "orion" - ], - "rand_core": [ - "dep:rand_core" - ], - "regex": [ - "dep:regex" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "serde_json", - "time", - "regex" - ], - "time": [ - "dep:time" - ], - "v2": [ - "orion", - "ed25519-compact" - ], - "v3": [ - "rand_core", - "p384", - "sha2" - ], - "v4": [ - "orion", - "ed25519-compact" - ] - }, - "homepage": null, - "id": "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "token", - "paseto", - "authentication" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pasetors-0.6.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pasetors", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/brycx/pasetors", - "rust_version": "^1.65.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "pasetors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pasetors-0.6.6/src/lib.rs", - "test": true - } - ], - "version": "0.6.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "camino", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Library for diffing paths to obtain relative paths", - "documentation": "https://docs.rs/pathdiff/", - "edition": "2018", - "features": { - "camino": [ - "dep:camino" - ] - }, - "homepage": null, - "id": "pathdiff 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "path", - "relative" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pathdiff-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "pathdiff", - "publish": null, - "readme": null, - "repository": "https://github.com/Manishearth/pathdiff", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "pathdiff", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pathdiff-0.2.1/src/lib.rs", - "test": true - } - ], - "version": "0.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base64ct", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS Structures, implementing a\nstrict subset of the original Privacy-Enhanced Mail encoding intended\nspecifically for use with cryptographic keys, certificates, and other messages.\nProvides a no_std-friendly, constant-time implementation suitable for use with\ncryptographic private keys.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base64ct/alloc" - ], - "std": [ - "alloc", - "base64ct/std" - ] - }, - "homepage": null, - "id": "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "pem", - "pkcs", - "rsa" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pem-rfc7468", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pem-rfc7468", - "rust_version": "^1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "pem-rfc7468", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/tests/decode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encode", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/tests/encode.rs", - "test": true - } - ], - "version": "0.7.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Percent encoding and decoding", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "alloc" - ] - }, - "homepage": null, - "id": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/Cargo.toml", - "name": "percent-encoding", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "percent-encoding", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/src/lib.rs", - "test": true - } - ], - "version": "2.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "der", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "pkcs5", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "spki", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", - "documentation": null, - "edition": "2021", - "features": { - "3des": [ - "encryption", - "pkcs5/3des" - ], - "alloc": [ - "der/alloc", - "der/zeroize", - "spki/alloc" - ], - "des-insecure": [ - "encryption", - "pkcs5/des-insecure" - ], - "encryption": [ - "alloc", - "pkcs5/alloc", - "pkcs5/pbes2", - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "pem": [ - "alloc", - "der/pem", - "spki/pem" - ], - "pkcs5": [ - "dep:pkcs5" - ], - "rand_core": [ - "dep:rand_core" - ], - "sha1-insecure": [ - "encryption", - "pkcs5/sha1-insecure" - ], - "std": [ - "alloc", - "der/std", - "spki/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "homepage": null, - "id": "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "pkcs", - "private" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pkcs8", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "pkcs8", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encrypted_private_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/encrypted_private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "private_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/traits.rs", - "test": true - } - ], - "version": "0.10.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", - "documentation": "https://docs.rs/pkg-config", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/Cargo.toml", - "name": "pkg-config", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/pkg-config-rs", - "rust_version": "^1.30", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "pkg-config", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/tests/test.rs", - "test": true - } - ], - "version": "0.3.27" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "arithmetic", - "sec1" - ], - "kind": "normal", - "name": "elliptic-curve", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Pure Rust implementation of complete addition formulas for prime order elliptic\ncurves (Renes-Costello-Batina 2015). Generic over field elements and curve\nequation coefficients\n", - "documentation": "https://docs.rs/primeorder", - "edition": "2021", - "features": { - "dev": [], - "serde": [ - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "std": [ - "elliptic-curve/std" - ] - }, - "homepage": null, - "id": "primeorder 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/primeorder-0.13.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "primeorder", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "primeorder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/primeorder-0.13.1/src/lib.rs", - "test": true - } - ], - "version": "0.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "documentation": "https://docs.rs/proc-macro2", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "homepage": null, - "id": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "name": "proc-macro2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "proc-macro2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "comments", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/comments.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "marker", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/marker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "features", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/features.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/build.rs", - "test": false - } - ], - "version": "1.0.56" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.52", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.66", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Quasi-quoting macro quote!(...)", - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "homepage": null, - "id": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "quote", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "quote", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/build.rs", - "test": false - } - ], - "version": "1.0.26" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "getrandom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Core random number generator traits and tools for implementation.\n", - "documentation": "https://docs.rs/rand_core", - "edition": "2018", - "features": { - "alloc": [], - "getrandom": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "std": [ - "alloc", - "getrandom", - "getrandom/std" - ] - }, - "homepage": "https://rust-random.github.io/book", - "id": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "random", - "rng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "all-features": true - } - }, - "name": "rand_core", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rand_core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs", - "test": true - } - ], - "version": "0.6.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Xoshiro, xoroshiro and splitmix64 random number generators", - "documentation": "https://docs.rs/rand_xoshiro", - "edition": "2018", - "features": { - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ] - }, - "homepage": "https://rust-random.github.io/book", - "id": "rand_xoshiro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "random", - "rng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/Cargo.toml", - "name": "rand_xoshiro", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/rngs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rand_xoshiro", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/tests/serde.rs", - "test": true - } - ], - "version": "0.6.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml", - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs", - "test": true - } - ], - "version": "0.2.16" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": { - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "bitflags/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "redox_syscall 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.3.5/Cargo.toml", - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.3.5/src/lib.rs", - "test": true - } - ], - "version": "0.3.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "aho-corasick", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex-syntax", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "getrandom", - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", - "documentation": "https://docs.rs/regex", - "edition": "2021", - "features": { - "aho-corasick": [ - "dep:aho-corasick" - ], - "default": [ - "std", - "perf", - "unicode", - "regex-syntax/default" - ], - "memchr": [ - "dep:memchr" - ], - "pattern": [], - "perf": [ - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal" - ], - "perf-cache": [], - "perf-dfa": [], - "perf-inline": [], - "perf-literal": [ - "aho-corasick", - "memchr" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "regex-syntax/unicode" - ], - "unicode-age": [ - "regex-syntax/unicode-age" - ], - "unicode-bool": [ - "regex-syntax/unicode-bool" - ], - "unicode-case": [ - "regex-syntax/unicode-case" - ], - "unicode-gencat": [ - "regex-syntax/unicode-gencat" - ], - "unicode-perl": [ - "regex-syntax/unicode-perl" - ], - "unicode-script": [ - "regex-syntax/unicode-script" - ], - "unicode-segment": [ - "regex-syntax/unicode-segment" - ], - "unstable": [ - "pattern" - ], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/regex", - "id": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/Cargo.toml", - "name": "regex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "regex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-cheat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-cheat.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-replace", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-replace.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-single-cheat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-single-cheat.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-single", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-single.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-bytes.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "default", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_default.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "default-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_default_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa-utf8bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa_utf8bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack-utf8bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack_utf8bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack-bytes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "crates-regex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_crates_regex.rs", - "test": true - } - ], - "version": "1.8.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "fst", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "regex-syntax", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "bstr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_bytes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Automata construction and matching using regular expressions.", - "documentation": "https://docs.rs/regex-automata", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "fst": [ - "dep:fst" - ], - "regex-syntax": [ - "dep:regex-syntax" - ], - "std": [ - "regex-syntax" - ], - "transducer": [ - "std", - "fst" - ] - }, - "homepage": "https://github.com/BurntSushi/regex-automata", - "id": "regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/Cargo.toml", - "name": "regex-automata", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/regex-automata", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "regex-automata", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "default", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/tests/tests.rs", - "test": true - } - ], - "version": "0.1.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "A regular expression parser.", - "documentation": "https://docs.rs/regex-syntax", - "edition": "2021", - "features": { - "default": [ - "std", - "unicode" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "unicode-age": [], - "unicode-bool": [], - "unicode-case": [], - "unicode-gencat": [], - "unicode-perl": [], - "unicode-script": [], - "unicode-segment": [] - }, - "homepage": "https://github.com/rust-lang/regex", - "id": "regex-syntax 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "regex-syntax", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "regex-syntax", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/benches/bench.rs", - "test": false - } - ], - "version": "0.7.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "reset" - ], - "kind": "normal", - "name": "hmac", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of RFC6979: Deterministic Usage of the\nDigital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)\n", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "rfc6979 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dsa", - "ecdsa", - "signature" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/Cargo.toml", - "name": "rfc6979", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/rfc6979", - "rust_version": "^1.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "rfc6979", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/tests/lib.rs", - "test": true - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Hack for the compiler's own build system\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "rustc-workspace-hack 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-workspace-hack-1.0.0/Cargo.toml", - "name": "rustc-workspace-hack", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "rustc-workspace-hack", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-workspace-hack-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Pascal Hertleif ", - "Oliver Schneider " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "duct", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "env_logger", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0-rc.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "similar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Automatically apply the suggestions made by rustc", - "documentation": "https://docs.rs/rustfix", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rustfix 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustfix-0.6.1/Cargo.toml", - "name": "rustfix", - "publish": null, - "readme": "Readme.md", - "repository": "https://github.com/rust-lang-nursery/rustfix", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustfix", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustfix-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "normal", - "name": "io-lifetimes", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "dev", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "memoffset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serial_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "general", - "ioctl", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": true, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "general", - "errno", - "ioctl", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": false - }, - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ctor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls", - "documentation": "https://docs.rs/rustix", - "edition": "2018", - "features": { - "all-apis": [ - "fs", - "io_uring", - "mm", - "net", - "param", - "process", - "procfs", - "rand", - "runtime", - "termios", - "thread", - "time" - ], - "all-impls": [ - "os_pipe", - "fs-err" - ], - "alloc": [ - "dep:alloc" - ], - "cc": [ - "dep:cc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "fs": [], - "fs-err": [ - "io-lifetimes/fs-err" - ], - "io-lifetimes": [ - "dep:io-lifetimes" - ], - "io_uring": [ - "fs", - "net" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_latest": [ - "linux_4_11" - ], - "mm": [], - "net": [], - "once_cell": [ - "dep:once_cell" - ], - "os_pipe": [ - "io-lifetimes/os_pipe" - ], - "param": [ - "fs" - ], - "process": [], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "rand": [], - "runtime": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std" - ], - "std": [ - "io-lifetimes" - ], - "termios": [], - "thread": [], - "time": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [ - "libc" - ] - }, - "homepage": null, - "id": "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-illumos", - "x86_64-unknown-redox", - "x86_64-unknown-haiku", - "wasm32-unknown-emscripten", - "wasm32-wasi" - ] - } - } - }, - "name": "rustix", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustix", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/benches/mod.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/build.rs", - "test": false - } - ], - "version": "0.37.19" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "no-panic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast floating point to string conversion", - "documentation": "https://docs.rs/ryu", - "edition": "2018", - "features": { - "no-panic": [ - "dep:no-panic" - ], - "small": [] - }, - "homepage": null, - "id": "ryu 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "float" - ], - "license": "Apache-2.0 OR BSL-1.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "ryu", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/ryu", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ryu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "upstream_benchmark", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/examples/upstream_benchmark.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "d2s_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/d2s_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "d2s_table_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/d2s_table_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "s2d_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/s2d_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "s2f_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/s2f_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "f2s_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/f2s_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "exhaustive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/exhaustive.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "common_test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/common_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/benches/bench.rs", - "test": false - } - ], - "version": "1.0.13" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/same-file", - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml", - "name": "same-file", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "same-file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_same_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_same_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_stderr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_stderr.rs", - "test": false - } - ], - "version": "1.0.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler ", - "Steffen Butzer " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_Security_Cryptography", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_System_Memory" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_SystemInformation", - "Win32_System_Time" - ], - "kind": "dev", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl", - "documentation": "https://docs.rs/schannel/0.1.19/schannel/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "schannel 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "schannel", - "tls", - "ssl", - "https" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/schannel-0.1.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc" - } - } - }, - "name": "schannel", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/steffengy/schannel-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "schannel", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/schannel-0.1.21/src/lib.rs", - "test": true - } - ], - "version": "0.1.21" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "base16ct", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "der", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "generic-array", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.14.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "pkcs8", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serdect", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "subtle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats\nincluding ASN.1 DER-serialized private keys as well as the\nElliptic-Curve-Point-to-Octet-String encoding\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "der?/alloc", - "pkcs8?/alloc", - "zeroize?/alloc" - ], - "default": [ - "der", - "point" - ], - "der": [ - "dep:der", - "zeroize" - ], - "pem": [ - "alloc", - "der/pem", - "pkcs8/pem" - ], - "pkcs8": [ - "dep:pkcs8" - ], - "point": [ - "dep:base16ct", - "dep:generic-array" - ], - "serde": [ - "dep:serdect" - ], - "std": [ - "alloc", - "der?/std" - ], - "subtle": [ - "dep:subtle" - ], - "zeroize": [ - "dep:zeroize", - "der?/zeroize" - ] - }, - "homepage": null, - "id": "sec1 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "elliptic-curve", - "secg" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sec1", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/sec1", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "sec1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "private_key", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/tests/private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/tests/traits.rs", - "test": true - } - ], - "version": "0.7.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", - "documentation": "https://docs.rs/semver", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "homepage": null, - "id": "semver 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cargo" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "semver", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/semver", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "semver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_version_req", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_version_req.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_identifier", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_identifier.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_version", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_version.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_autotrait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_autotrait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/benches/parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/build.rs", - "test": false - } - ], - "version": "1.0.17" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.162", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A generic serialization/deserialization framework", - "documentation": "https://docs.rs/serde", - "edition": "2015", - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "homepage": "https://serde.rs", - "id": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "name": "serde", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/build.rs", - "test": false - } - ], - "version": "1.0.162" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "arcnmx" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ordered-float", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Serialization value trees", - "documentation": "https://docs.rs/serde-value/*/serde_value/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-value-0.7.0/Cargo.toml", - "name": "serde-value", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/arcnmx/serde-value", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde-value", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-value-0.7.0/src/lib.rs", - "test": true - } - ], - "version": "0.7.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "features": { - "default": [], - "deserialize_in_place": [] - }, - "homepage": "https://serde.rs", - "id": "serde_derive 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_derive", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "proc-macro" - ], - "name": "serde_derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/build.rs", - "test": false - } - ], - "version": "1.0.162" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Find out about keys that are ignored when deserializing data", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "serde_ignored 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_ignored", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/serde-ignored", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde_ignored", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/tests/test.rs", - "test": true - } - ], - "version": "0.1.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "parser-implementations", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std" - ], - "kind": "normal", - "name": "indexmap", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ryu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "indoc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_bytes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_stacker", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A JSON serialization file format", - "documentation": "https://docs.rs/serde_json", - "edition": "2018", - "features": { - "alloc": [ - "serde/alloc" - ], - "arbitrary_precision": [], - "default": [ - "std" - ], - "float_roundtrip": [], - "indexmap": [ - "dep:indexmap" - ], - "preserve_order": [ - "indexmap", - "std" - ], - "raw_value": [], - "std": [ - "serde/std" - ], - "unbounded_depth": [] - }, - "homepage": null, - "id": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "json", - "serde", - "serialization" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "raw_value", - "unbounded_depth" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "raw_value" - ] - } - }, - "name": "serde_json", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/serde-rs/json", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde_json", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "lexical", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/lexical.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debug", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/debug.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "map", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/map.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/build.rs", - "test": false - } - ], - "version": "1.0.96" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/serde_spanned", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "span" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "serde_spanned", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "serde_spanned", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cpufeatures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha1-asm", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "uses_default_features": true - } - ], - "description": "SHA-1 hash function", - "documentation": "https://docs.rs/sha1", - "edition": "2018", - "features": { - "asm": [ - "sha1-asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "oid": [ - "digest/oid" - ], - "sha1-asm": [ - "dep:sha1-asm" - ], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "sha1 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "sha1", - "hash", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sha1", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sha1", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/tests/mod.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/benches/mod.rs", - "test": false - } - ], - "version": "0.10.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "cpufeatures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2-asm", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", - "documentation": "https://docs.rs/sha2", - "edition": "2018", - "features": { - "asm": [ - "sha2-asm" - ], - "asm-aarch64": [ - "asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "oid": [ - "digest/oid" - ], - "sha2-asm": [ - "dep:sha2-asm" - ], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "sha2", - "hash", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sha2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sha2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/tests/mod.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/benches/mod.rs", - "test": false - } - ], - "version": "0.10.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Escape characters that may have a special meaning in a shell", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shell-escape-0.1.5/Cargo.toml", - "name": "shell-escape", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/shell-escape", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "shell-escape", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shell-escape-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "signature_derive", - "optional": true, - "path": null, - "registry": null, - "rename": "derive", - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "digest", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", - "documentation": "https://docs.rs/signature", - "edition": "2021", - "features": { - "alloc": [], - "derive": [ - "dep:derive" - ], - "digest": [ - "dep:digest" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "signature 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecdsa", - "ed25519", - "signature", - "signing" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "signature", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/signature", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "signature", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/tests/derive.rs", - "test": true - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "array-ops", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitmaps", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "refpool", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "typenum", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Efficient sized chunk datatypes", - "documentation": "http://docs.rs/sized-chunks", - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "array-ops": [ - "dep:array-ops" - ], - "default": [ - "std" - ], - "refpool": [ - "dep:refpool" - ], - "ringbuffer": [ - "array-ops" - ], - "std": [] - }, - "homepage": null, - "id": "sized-chunks 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "sparse-array" - ], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sized-chunks-0.6.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "sized-chunks", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/bodil/sized-chunks", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sized-chunks", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sized-chunks-0.6.5/src/lib.rs", - "test": true - } - ], - "version": "0.6.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton ", - "Thomas de Zeeuw " - ], - "categories": [ - "api-bindings", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.139", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "handleapi", - "ws2ipdef", - "ws2tcpip" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", - "documentation": "https://docs.rs/socket2", - "edition": "2018", - "features": { - "all": [] - }, - "homepage": "https://github.com/rust-lang/socket2", - "id": "socket2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "io", - "socket", - "network" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "all" - ] - } - }, - "name": "socket2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/socket2", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "socket2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.9/src/lib.rs", - "test": true - } - ], - "version": "0.4.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "base64ct", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": "normal", - "name": "der", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "sha2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base64ct?/alloc", - "der/alloc" - ], - "arbitrary": [ - "std", - "dep:arbitrary", - "der/arbitrary" - ], - "base64": [ - "dep:base64ct" - ], - "fingerprint": [ - "sha2" - ], - "pem": [ - "alloc", - "der/pem" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "der/std", - "alloc" - ] - }, - "homepage": null, - "id": "spki 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "x509" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "spki", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/spki", - "rust_version": "^1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "spki", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "spki", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/tests/spki.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/tests/traits.rs", - "test": true - } - ], - "version": "0.7.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Ted Mielczarek " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "vte", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Strip ANSI escape sequences from byte streams.", - "documentation": "https://docs.rs/strip-ansi-escapes", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/luser/strip-ansi-escapes", - "id": "strip-ansi-escapes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "escape", - "terminal" - ], - "license": "Apache-2.0/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/Cargo.toml", - "name": "strip-ansi-escapes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/luser/strip-ansi-escapes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "strip-ansi-escapes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "strip-escapes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/examples/strip-escapes.rs", - "test": false - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Danny Guo " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/dguo/strsim-rs", - "id": "strsim 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/Cargo.toml", - "name": "strsim", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dguo/strsim-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "strsim", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "lib", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/tests/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "benches", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/benches/benches.rs", - "test": false - } - ], - "version": "0.10.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "documentation": "https://docs.rs/subtle", - "edition": "2015", - "features": { - "default": [ - "std", - "i128" - ], - "i128": [], - "nightly": [], - "std": [] - }, - "homepage": "https://dalek.rs/", - "id": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "constant-time", - "utilities" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/Cargo.toml", - "name": "subtle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/subtle", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "subtle", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/tests/mod.rs", - "test": true - } - ], - "version": "2.4.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.46", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2018", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_should_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_expr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_asyncness", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_grouping", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_pat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_round_trip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_visibility", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_iterators", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_meta", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_item", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_shebang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_stmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_derive_input", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_generics", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_attribute", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_lit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_precedence", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zzz_stable", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ty", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_receiver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_token_trees", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/benches/file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/build.rs", - "test": false - } - ], - "version": "1.0.109" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.55", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2021", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "syn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_should_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_expr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_asyncness", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_grouping", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_pat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_round_trip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_visibility", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_iterators", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_meta", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_item", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_shebang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_stmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_derive_input", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_generics", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_attribute", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_lit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_precedence", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zzz_stable", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_ty", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_receiver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_token_trees", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/benches/file.rs", - "test": false - } - ], - "version": "2.0.15" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "xattr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", - "documentation": "https://docs.rs/tar", - "edition": "2018", - "features": { - "default": [ - "xattr" - ], - "xattr": [ - "dep:xattr" - ] - }, - "homepage": "https://github.com/alexcrichton/tar-rs", - "id": "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tar", - "tarfile", - "encoding" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/Cargo.toml", - "name": "tar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/tar-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "write", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "raw_list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/raw_list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "extract_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/extract_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/tests/all.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "entry", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/tests/entry.rs", - "test": true - } - ], - "version": "0.4.38" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "fastrand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "fs" - ], - "kind": "normal", - "name": "rustix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.37.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A library for managing temporary files and directories.", - "documentation": "https://docs.rs/tempfile", - "edition": "2018", - "features": { - "nightly": [] - }, - "homepage": "https://stebalien.com/projects/tempfile-rs/", - "id": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/Cargo.toml", - "name": "tempfile", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "namedtempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/namedtempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/tempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "spooled", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/spooled.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/tempdir.rs", - "test": true - } - ], - "version": "3.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.\n", - "documentation": "https://docs.rs/termcolor", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/termcolor", - "id": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "win", - "color", - "ansi", - "console" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.2.0/Cargo.toml", - "name": "termcolor", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/termcolor", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "termcolor", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.2.0/src/lib.rs", - "test": true - } - ], - "version": "1.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Per-object thread-local storage", - "documentation": "https://docs.rs/thread_local/", - "edition": "2021", - "features": { - "nightly": [] - }, - "homepage": null, - "id": "thread_local 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "thread_local", - "concurrent", - "thread" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/Cargo.toml", - "name": "thread_local", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Amanieu/thread_local-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "thread_local", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "thread_local", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/benches/thread_local.rs", - "test": false - } - ], - "version": "1.1.7" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time", - "no-std", - "parser-implementations", - "value-formatting" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quickcheck", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rand", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "time-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "time-macros", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck_macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time-macros", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(__ui_tests)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.58", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_family = \"wasm\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(bench)", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.98", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_family = \"unix\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "num_threads", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_family = \"unix\")", - "uses_default_features": true - } - ], - "description": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "serde?/alloc" - ], - "default": [ - "std" - ], - "formatting": [ - "dep:itoa", - "std", - "time-macros?/formatting" - ], - "large-dates": [ - "time-macros?/large-dates" - ], - "local-offset": [ - "std", - "dep:libc", - "dep:num_threads" - ], - "macros": [ - "dep:time-macros" - ], - "parsing": [ - "time-macros?/parsing" - ], - "quickcheck": [ - "dep:quickcheck", - "alloc" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde", - "time-macros?/serde" - ], - "serde-human-readable": [ - "serde", - "formatting", - "parsing" - ], - "serde-well-known": [ - "serde", - "formatting", - "parsing" - ], - "std": [ - "alloc" - ], - "wasm-bindgen": [ - "dep:js-sys" - ] - }, - "homepage": "https://time-rs.github.io", - "id": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "__time_03_docs" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "time", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/time-rs/time", - "rust_version": "^1.63.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "time", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/../tests/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "benchmarks", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/../benchmarks/main.rs", - "test": false - } - ], - "version": "0.3.20" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [], - "description": "This crate is an implementation detail and should not be relied upon directly.", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/Cargo.toml", - "name": "time-core", - "publish": null, - "readme": null, - "repository": "https://github.com/time-rs/time", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "time-core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/src/lib.rs", - "test": true - } - ], - "version": "0.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "time-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " Procedural macros for the time crate.\n This crate is an implementation detail and should not be relied upon directly.\n", - "documentation": null, - "edition": "2021", - "features": { - "formatting": [], - "large-dates": [], - "parsing": [], - "serde": [] - }, - "homepage": null, - "id": "time-macros 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.8/Cargo.toml", - "name": "time-macros", - "publish": null, - "readme": null, - "repository": "https://github.com/time-rs/time", - "rust_version": "^1.63.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "proc-macro" - ], - "name": "time-macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.8/src/lib.rs", - "test": true - } - ], - "version": "0.2.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Lokathor " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arbitrary", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "tinyvec_macros", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "smallvec", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [ - "tinyvec_macros" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "default": [], - "experimental_write_impl": [], - "grab_spare_slice": [], - "nightly_slice_partition_dedup": [], - "real_blackbox": [ - "criterion/real_blackbox" - ], - "rustc_1_40": [], - "rustc_1_55": [ - "rustc_1_40" - ], - "rustc_1_57": [ - "rustc_1_55" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "tinyvec_macros": [ - "dep:tinyvec_macros" - ] - }, - "homepage": null, - "id": "tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "vec", - "no_std", - "no-std" - ], - "license": "Zlib OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "rustc_1_40", - "rustc_1_55", - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docs_rs" - ] - } - }, - "playground": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "rustc_1_40", - "rustc_1_55", - "serde" - ] - } - }, - "name": "tinyvec", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Lokathor/tinyvec", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tinyvec", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tinyvec", - "required-features": [ - "alloc", - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/tinyvec.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arrayvec", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/arrayvec.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "macros", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/macros.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "smallvec", - "required-features": [ - "alloc", - "real_blackbox" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/smallvec.rs", - "test": false - } - ], - "version": "1.6.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Soveu " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Some macros for tiny containers", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "tinyvec_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0 OR Zlib", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.1/Cargo.toml", - "name": "tinyvec_macros", - "publish": null, - "readme": null, - "repository": "https://github.com/Soveu/tinyvec_macros", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tinyvec_macros", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "indexmap", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "serde_spanned", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "toml_datetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "toml_edit", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.19.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.152", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.93", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/toml", - "edition": "2021", - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit" - ], - "preserve_order": [ - "indexmap" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "decode", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/decode.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "enum_external", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/enum_external.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "toml2json", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/toml2json.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/encoder.rs", - "test": true - } - ], - "version": "0.7.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A TOML-compatible datetime type", - "documentation": "https://docs.rs/toml_datetime", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml_datetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_datetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std" - ], - "kind": "normal", - "name": "indexmap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "max_inline" - ], - "kind": "normal", - "name": "kstring", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "serde_spanned", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml_datetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winnow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libtest-mimic", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.93", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "harness" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-data", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Yet another format-preserving TOML parser.", - "documentation": "https://docs.rs/toml_edit", - "edition": "2021", - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "homepage": null, - "id": "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-name": "v{{version}}" - } - }, - "name": "toml_edit", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/ordian/toml_edit", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_edit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "visit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/examples/visit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "invalid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/invalid.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/encoder.rs", - "test": true - } - ], - "version": "0.19.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Paho Lurie-Gregg ", - "Andre Bogus " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "scale-info", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", - "documentation": "https://docs.rs/typenum", - "edition": "2018", - "features": { - "const-generics": [], - "force_unix_path_separator": [], - "i128": [], - "no_std": [], - "scale-info": [ - "dep:scale-info" - ], - "scale_info": [ - "scale-info/derive" - ], - "strict": [] - }, - "homepage": null, - "id": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/Cargo.toml", - "name": "typenum", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/paholg/typenum", - "rust_version": "^1.37.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "typenum", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-main", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/main.rs", - "test": false - } - ], - "version": "1.16.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "no-std", - "encoding", - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "flame", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "flamer", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": ">=0.8, <2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": ">=0.8, <2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Implementation of the Unicode Bidirectional Algorithm", - "documentation": "https://docs.rs/unicode-bidi/", - "edition": "2018", - "features": { - "bench_it": [], - "default": [ - "std", - "hardcoded-data" - ], - "flame": [ - "dep:flame" - ], - "flame_it": [ - "flame", - "flamer" - ], - "flamer": [ - "dep:flamer" - ], - "hardcoded-data": [], - "serde": [ - "dep:serde" - ], - "std": [], - "unstable": [], - "with_serde": [ - "serde" - ] - }, - "homepage": null, - "id": "unicode-bidi 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rtl", - "unicode", - "text", - "layout", - "bidi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/Cargo.toml", - "name": "unicode-bidi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/unicode-bidi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode_bidi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "conformance_tests", - "required-features": [ - "hardcoded-data" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/tests/conformance_tests.rs", - "test": true - } - ], - "version": "0.3.13" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fst", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "roaring", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ucd-trie", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unicode-xid", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "xid" - ], - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "unicode-ident", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "static_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/tests/static_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compare", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/tests/compare.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/benches/xid.rs", - "test": false - } - ], - "version": "1.0.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "alloc" - ], - "kind": "normal", - "name": "tinyvec", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", - "documentation": "https://docs.rs/unicode-normalization/", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/unicode-rs/unicode-normalization", - "id": "unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "unicode", - "normalization", - "decomposition", - "recomposition" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/Cargo.toml", - "name": "unicode-normalization", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-normalization", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-normalization", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/benches/bench.rs", - "test": false - } - ], - "version": "0.1.22" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-std", - "optional": true, - "path": null, - "registry": null, - "rename": "std", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "documentation": "https://unicode-rs.github.io/unicode-width", - "edition": "2015", - "features": { - "bench": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "homepage": "https://github.com/unicode-rs/unicode-width", - "id": "unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "width", - "unicode" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/Cargo.toml", - "name": "unicode-width", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "unicode-width", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/src/lib.rs", - "test": true - } - ], - "version": "0.1.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "erick.tryzelaar ", - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", - "documentation": "https://unicode-rs.github.io/unicode-xid", - "edition": "2015", - "features": { - "bench": [], - "default": [], - "no_std": [] - }, - "homepage": "https://github.com/unicode-rs/unicode-xid", - "id": "unicode-xid 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "unicode", - "xid" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/Cargo.toml", - "name": "unicode-xid", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-xid", - "rust_version": "^1.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "unicode-xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "exhaustive_tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/tests/exhaustive_tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/benches/xid.rs", - "test": false - } - ], - "version": "0.2.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The rust-url developers" - ], - "categories": [ - "parser-implementations", - "web-programming", - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "form_urlencoded", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "idna", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "percent-encoding", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "debugger_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "debugger_test_parser", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "URL library for Rust, based on the WHATWG URL Standard", - "documentation": "https://docs.rs/url", - "edition": "2018", - "features": { - "debugger_visualizer": [], - "default": [], - "expose_internals": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "url", - "parser" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/Cargo.toml", - "name": "url", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/rust-url", - "rust_version": "^1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "url", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debugger_visualizer", - "required-features": [ - "debugger_visualizer" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/debugger_visualizer.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/unit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "data", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/data.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "parse_url", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/benches/parse_url.rs", - "test": false - } - ], - "version": "2.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "Table-driven UTF-8 parser", - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "features": { - "default": [], - "nightly": [] - }, - "homepage": null, - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utf8", - "parse", - "table" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/Cargo.toml", - "name": "utf8parse", - "publish": null, - "readme": null, - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "utf8parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "utf-8-demo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/tests/utf-8-demo.rs", - "test": true - } - ], - "version": "0.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jim McGrath " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", - "documentation": "https://docs.rs/vcpkg", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies", - "windows", - "macos", - "linux" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vcpkg-0.2.15/Cargo.toml", - "name": "vcpkg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mcgoo/vcpkg-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "vcpkg", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vcpkg-0.2.15/src/lib.rs", - "test": true - } - ], - "version": "0.2.15" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sergio Benitez " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Tiny crate to check the version of the installed/running rustc.", - "documentation": "https://docs.rs/version_check/", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "version", - "rustc", - "minimum", - "check" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/Cargo.toml", - "name": "version_check", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/version_check", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "version_check", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs", - "test": true - } - ], - "version": "0.9.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arrayvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "vte_generate_state_changes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for implementing terminal emulators", - "documentation": "https://docs.rs/vte/", - "edition": "2018", - "features": { - "arrayvec": [ - "dep:arrayvec" - ], - "default": [ - "no_std" - ], - "nightly": [ - "utf8parse/nightly" - ], - "no_std": [ - "arrayvec" - ] - }, - "homepage": null, - "id": "vte 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "vte", - "parser", - "terminal" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/Cargo.toml", - "name": "vte", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "vte", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "parselog", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/examples/parselog.rs", - "test": false - } - ], - "version": "0.10.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Christian Duerr " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Proc macro for generating VTE state changes", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "vte_generate_state_changes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte_generate_state_changes-0.1.1/Cargo.toml", - "name": "vte_generate_state_changes", - "publish": null, - "readme": null, - "repository": "https://github.com/jwilm/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "vte_generate_state_changes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte_generate_state_changes-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Recursively walk a directory.", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/walkdir", - "id": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.3/Cargo.toml", - "name": "walkdir", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "walkdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.3/src/lib.rs", - "test": true - } - ], - "version": "2.3.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Cranelift Project Developers" - ], - "categories": [ - "no-std", - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Experimental WASI API bindings for Rust", - "documentation": "https://docs.rs/wasi", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "rustc-std-workspace-alloc" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "std": [] - }, - "homepage": null, - "id": "wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "webassembly", - "wasm" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", - "name": "wasi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", - "test": true - } - ], - "version": "0.11.0+wasi-snapshot-preview1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-macro", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "js-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.3.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test-crate-a", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test-crate-b", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "Easy support for interacting between JS and Rust.\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "default": [ - "spans", - "std" - ], - "enable-interning": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde-serialize": [ - "serde", - "serde_json", - "std" - ], - "serde_json": [ - "dep:serde_json" - ], - "spans": [ - "wasm-bindgen-macro/spans" - ], - "std": [], - "strict-macro": [ - "wasm-bindgen-macro/strict-macro" - ], - "xxx_debug_only_print_generated_code": [ - "wasm-bindgen-macro/xxx_debug_only_print_generated_code" - ] - }, - "homepage": "https://rustwasm.github.io/", - "id": "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-serialize" - ] - } - } - }, - "name": "wasm-bindgen", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "must_use", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/must_use.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "non_wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/non_wasm.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "headless", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/headless/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "std-crate-no-std-dep", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/std-crate-no-std-dep.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unwrap_throw", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/unwrap_throw.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/wasm/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/build.rs", - "test": false - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bumpalo", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "log", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-shared", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Backend code generation of the wasm-bindgen tool\n", - "documentation": "https://docs.rs/wasm-bindgen-backend", - "edition": "2018", - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-backend 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.84/Cargo.toml", - "name": "wasm-bindgen-backend", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-backend", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.84/src/lib.rs", - "test": true - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-macro-support", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "web-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "spans": [ - "wasm-bindgen-macro-support/spans" - ], - "strict-macro": [ - "wasm-bindgen-macro-support/strict-macro" - ], - "xxx_debug_only_print_generated_code": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-macro 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/Cargo.toml", - "name": "wasm-bindgen-macro", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "wasm-bindgen-macro", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ui", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/tests/ui.rs", - "test": true - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "visit", - "full" - ], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-backend", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen-shared", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [ - "wasm-bindgen-backend/spans" - ], - "strict-macro": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-macro-support 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.84/Cargo.toml", - "name": "wasm-bindgen-macro-support", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-macro-support", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.84/src/lib.rs", - "test": true - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", - "documentation": "https://docs.rs/wasm-bindgen-shared", - "edition": "2018", - "features": {}, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "wasm_bindgen", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/Cargo.toml", - "name": "wasm-bindgen-shared", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-shared", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/build.rs", - "test": false - } - ], - "version": "0.2.84" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "winapi-i686-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-x86_64-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - } - ], - "description": "Raw FFI bindings for all of Windows API.", - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "features": { - "accctrl": [], - "aclapi": [], - "activation": [], - "adhoc": [], - "appmgmt": [], - "audioclient": [], - "audiosessiontypes": [], - "avrt": [], - "basetsd": [], - "bcrypt": [], - "bits": [], - "bits10_1": [], - "bits1_5": [], - "bits2_0": [], - "bits2_5": [], - "bits3_0": [], - "bits4_0": [], - "bits5_0": [], - "bitscfg": [], - "bitsmsg": [], - "bluetoothapis": [], - "bluetoothleapis": [], - "bthdef": [], - "bthioctl": [], - "bthledef": [], - "bthsdpdef": [], - "bugcodes": [], - "cderr": [], - "cfg": [], - "cfgmgr32": [], - "cguid": [], - "combaseapi": [], - "coml2api": [], - "commapi": [], - "commctrl": [], - "commdlg": [], - "commoncontrols": [], - "consoleapi": [], - "corecrt": [], - "corsym": [], - "d2d1": [], - "d2d1_1": [], - "d2d1_2": [], - "d2d1_3": [], - "d2d1effectauthor": [], - "d2d1effects": [], - "d2d1effects_1": [], - "d2d1effects_2": [], - "d2d1svg": [], - "d2dbasetypes": [], - "d3d": [], - "d3d10": [], - "d3d10_1": [], - "d3d10_1shader": [], - "d3d10effect": [], - "d3d10misc": [], - "d3d10sdklayers": [], - "d3d10shader": [], - "d3d11": [], - "d3d11_1": [], - "d3d11_2": [], - "d3d11_3": [], - "d3d11_4": [], - "d3d11on12": [], - "d3d11sdklayers": [], - "d3d11shader": [], - "d3d11tokenizedprogramformat": [], - "d3d12": [], - "d3d12sdklayers": [], - "d3d12shader": [], - "d3d9": [], - "d3d9caps": [], - "d3d9types": [], - "d3dcommon": [], - "d3dcompiler": [], - "d3dcsx": [], - "d3dkmdt": [], - "d3dkmthk": [], - "d3dukmdt": [], - "d3dx10core": [], - "d3dx10math": [], - "d3dx10mesh": [], - "datetimeapi": [], - "davclnt": [], - "dbghelp": [], - "dbt": [], - "dcommon": [], - "dcomp": [], - "dcompanimation": [], - "dcomptypes": [], - "dde": [], - "ddraw": [], - "ddrawi": [], - "ddrawint": [], - "debug": [ - "impl-debug" - ], - "debugapi": [], - "devguid": [], - "devicetopology": [], - "devpkey": [], - "devpropdef": [], - "dinput": [], - "dinputd": [], - "dispex": [], - "dmksctl": [], - "dmusicc": [], - "docobj": [], - "documenttarget": [], - "dot1x": [], - "dpa_dsa": [], - "dpapi": [], - "dsgetdc": [], - "dsound": [], - "dsrole": [], - "dvp": [], - "dwmapi": [], - "dwrite": [], - "dwrite_1": [], - "dwrite_2": [], - "dwrite_3": [], - "dxdiag": [], - "dxfile": [], - "dxgi": [], - "dxgi1_2": [], - "dxgi1_3": [], - "dxgi1_4": [], - "dxgi1_5": [], - "dxgi1_6": [], - "dxgidebug": [], - "dxgiformat": [], - "dxgitype": [], - "dxva2api": [], - "dxvahd": [], - "eaptypes": [], - "enclaveapi": [], - "endpointvolume": [], - "errhandlingapi": [], - "everything": [], - "evntcons": [], - "evntprov": [], - "evntrace": [], - "excpt": [], - "exdisp": [], - "fibersapi": [], - "fileapi": [], - "functiondiscoverykeys_devpkey": [], - "gl-gl": [], - "guiddef": [], - "handleapi": [], - "heapapi": [], - "hidclass": [], - "hidpi": [], - "hidsdi": [], - "hidusage": [], - "highlevelmonitorconfigurationapi": [], - "hstring": [], - "http": [], - "ifdef": [], - "ifmib": [], - "imm": [], - "impl-debug": [], - "impl-default": [], - "in6addr": [], - "inaddr": [], - "inspectable": [], - "interlockedapi": [], - "intsafe": [], - "ioapiset": [], - "ipexport": [], - "iphlpapi": [], - "ipifcons": [], - "ipmib": [], - "iprtrmib": [], - "iptypes": [], - "jobapi": [], - "jobapi2": [], - "knownfolders": [], - "ks": [], - "ksmedia": [], - "ktmtypes": [], - "ktmw32": [], - "l2cmn": [], - "libloaderapi": [], - "limits": [], - "lmaccess": [], - "lmalert": [], - "lmapibuf": [], - "lmat": [], - "lmcons": [], - "lmdfs": [], - "lmerrlog": [], - "lmjoin": [], - "lmmsg": [], - "lmremutl": [], - "lmrepl": [], - "lmserver": [], - "lmshare": [], - "lmstats": [], - "lmsvc": [], - "lmuse": [], - "lmwksta": [], - "lowlevelmonitorconfigurationapi": [], - "lsalookup": [], - "memoryapi": [], - "minschannel": [], - "minwinbase": [], - "minwindef": [], - "mmdeviceapi": [], - "mmeapi": [], - "mmreg": [], - "mmsystem": [], - "mprapidef": [], - "msaatext": [], - "mscat": [], - "mschapp": [], - "mssip": [], - "mstcpip": [], - "mswsock": [], - "mswsockdef": [], - "namedpipeapi": [], - "namespaceapi": [], - "nb30": [], - "ncrypt": [], - "netioapi": [], - "nldef": [], - "ntddndis": [], - "ntddscsi": [], - "ntddser": [], - "ntdef": [], - "ntlsa": [], - "ntsecapi": [], - "ntstatus": [], - "oaidl": [], - "objbase": [], - "objidl": [], - "objidlbase": [], - "ocidl": [], - "ole2": [], - "oleauto": [], - "olectl": [], - "oleidl": [], - "opmapi": [], - "pdh": [], - "perflib": [], - "physicalmonitorenumerationapi": [], - "playsoundapi": [], - "portabledevice": [], - "portabledeviceapi": [], - "portabledevicetypes": [], - "powerbase": [], - "powersetting": [], - "powrprof": [], - "processenv": [], - "processsnapshot": [], - "processthreadsapi": [], - "processtopologyapi": [], - "profileapi": [], - "propidl": [], - "propkey": [], - "propkeydef": [], - "propsys": [], - "prsht": [], - "psapi": [], - "qos": [], - "realtimeapiset": [], - "reason": [], - "restartmanager": [], - "restrictederrorinfo": [], - "rmxfguid": [], - "roapi": [], - "robuffer": [], - "roerrorapi": [], - "rpc": [], - "rpcdce": [], - "rpcndr": [], - "rtinfo": [], - "sapi": [], - "sapi51": [], - "sapi53": [], - "sapiddk": [], - "sapiddk51": [], - "schannel": [], - "sddl": [], - "securityappcontainer": [], - "securitybaseapi": [], - "servprov": [], - "setupapi": [], - "shellapi": [], - "shellscalingapi": [], - "shlobj": [], - "shobjidl": [], - "shobjidl_core": [], - "shtypes": [], - "softpub": [], - "spapidef": [], - "spellcheck": [], - "sporder": [], - "sql": [], - "sqlext": [], - "sqltypes": [], - "sqlucode": [], - "sspi": [], - "std": [], - "stralign": [], - "stringapiset": [], - "strmif": [], - "subauth": [], - "synchapi": [], - "sysinfoapi": [], - "systemtopologyapi": [], - "taskschd": [], - "tcpestats": [], - "tcpmib": [], - "textstor": [], - "threadpoolapiset": [], - "threadpoollegacyapiset": [], - "timeapi": [], - "timezoneapi": [], - "tlhelp32": [], - "transportsettingcommon": [], - "tvout": [], - "udpmib": [], - "unknwnbase": [], - "urlhist": [], - "urlmon": [], - "usb": [], - "usbioctl": [], - "usbiodef": [], - "usbscan": [], - "usbspec": [], - "userenv": [], - "usp10": [], - "utilapiset": [], - "uxtheme": [], - "vadefs": [], - "vcruntime": [], - "vsbackup": [], - "vss": [], - "vsserror": [], - "vswriter": [], - "wbemads": [], - "wbemcli": [], - "wbemdisp": [], - "wbemprov": [], - "wbemtran": [], - "wct": [], - "werapi": [], - "winbase": [], - "wincodec": [], - "wincodecsdk": [], - "wincon": [], - "wincontypes": [], - "wincred": [], - "wincrypt": [], - "windef": [], - "windot11": [], - "windowsceip": [], - "windowsx": [], - "winefs": [], - "winerror": [], - "winevt": [], - "wingdi": [], - "winhttp": [], - "wininet": [], - "winineti": [], - "winioctl": [], - "winnetwk": [], - "winnls": [], - "winnt": [], - "winreg": [], - "winsafer": [], - "winscard": [], - "winsmcrd": [], - "winsock2": [], - "winspool": [], - "winstring": [], - "winsvc": [], - "wintrust": [], - "winusb": [], - "winusbio": [], - "winuser": [], - "winver": [], - "wlanapi": [], - "wlanihv": [], - "wlanihvtypes": [], - "wlantypes": [], - "wlclient": [], - "wmistr": [], - "wnnc": [], - "wow64apiset": [], - "wpdmtpextensions": [], - "ws2bth": [], - "ws2def": [], - "ws2ipdef": [], - "ws2spi": [], - "ws2tcpip": [], - "wtsapi32": [], - "wtypes": [], - "wtypesbase": [], - "xinput": [] - }, - "homepage": null, - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "features": [ - "everything", - "impl-debug", - "impl-default" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs", - "test": false - } - ], - "version": "0.3.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-i686-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-i686-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std", - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A dumping ground for high level safe wrappers over winapi.", - "documentation": "https://docs.rs/winapi-util", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/winapi-util", - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "winapi", - "util", - "win" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi-util", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "winapi-util", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-x86_64-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-x86_64-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_AI": [ - "Win32" - ], - "Win32_AI_MachineLearning": [ - "Win32_AI" - ], - "Win32_AI_MachineLearning_DirectML": [ - "Win32_AI_MachineLearning" - ], - "Win32_AI_MachineLearning_WinML": [ - "Win32_AI_MachineLearning" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_CompositionSwapchain": [ - "Win32_Graphics" - ], - "Win32_Graphics_DXCore": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D_Common": [ - "Win32_Graphics_Direct2D" - ], - "Win32_Graphics_Direct3D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D10": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D_Dxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_Direct3D_Fxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_DirectComposition": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectDraw": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectManipulation": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectWrite": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi_Common": [ - "Win32_Graphics_Dxgi" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging_D2D": [ - "Win32_Graphics_Imaging" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectSound": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DirectShow": [ - "Win32_Media" - ], - "Win32_Media_DirectShow_Xml": [ - "Win32_Media_DirectShow" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaFoundation": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_PictureAcquisition": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_SideShow": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_TransactionServer": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WinRT": [ - "Win32_System" - ], - "Win32_System_WinRT_AllJoyn": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Composition": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_CoreInputView": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Direct3D11": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Display": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics_Capture": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Direct2D": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Imaging": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Holographic": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Isolation": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_ML": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Media": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Pdf": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Printing": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Shell": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Storage": [ - "Win32_System_WinRT" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_UI_Xaml": [ - "Win32_UI" - ], - "Win32_UI_Xaml_Diagnostics": [ - "Win32_UI_Xaml" - ], - "default": [], - "deprecated": [] - }, - "homepage": null, - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs", - "test": true - } - ], - "version": "0.42.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows_raw_dylib))", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/src/lib.rs", - "test": true - } - ], - "version": "0.45.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Wdk": [], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ClrProfiling": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_ActiveScript": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.2/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.2/src/lib.rs", - "test": true - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "parsing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-stream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "terminal_size", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "circular", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "escargot", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "examples" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "term-transcript", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A byte-oriented, zero-copy, parser combinators library", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [], - "debug": [ - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size", - "dep:anstyle-stream" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd" - ] - }, - "homepage": null, - "id": "winnow 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "winnow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "winnow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "arithmetic", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/arithmetic/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "css", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/css/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_error", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/custom_error.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "http", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/http/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "ini", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ini/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "json", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "ndjson", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ndjson/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "json_iterator", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json_iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "iterator", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "s_expression", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/s_expression/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "string", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/string/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "arithmetic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/arithmetic/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "contains_token", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/benches/contains_token.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "number", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/benches/number.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "http", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/http/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "ini", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ini/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "json", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json/bench.rs", - "test": false - } - ], - "version": "0.4.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The RustCrypto Project Developers" - ], - "categories": [ - "cryptography", - "memory-management", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "zeroize_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", - "documentation": null, - "edition": "2021", - "features": { - "aarch64": [], - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "zeroize_derive" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "zeroize_derive": [ - "dep:zeroize_derive" - ] - }, - "homepage": null, - "id": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memory", - "memset", - "secure", - "volatile", - "zero" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "zeroize", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "zeroize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zeroize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/tests/zeroize.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zeroize_derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/tests/zeroize_derive.rs", - "test": true - } - ], - "version": "1.6.0" - }, - "source": "CratesIo" - } -] diff --git a/deps_tests/cargo_0.70.1.metadata.json b/deps_tests/cargo_0.70.1.metadata.json deleted file mode 100644 index dfb3c08..0000000 --- a/deps_tests/cargo_0.70.1.metadata.json +++ /dev/null @@ -1,47487 +0,0 @@ -{ - "metadata": null, - "packages": [ - { - "authors": [ - "Jonas Schievink " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple clean-room implementation of the Adler-32 checksum", - "documentation": "https://docs.rs/adler/", - "edition": "2015", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [] - }, - "homepage": null, - "id": "adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "checksum", - "integrity", - "hash", - "adler32", - "zlib" - ], - "license": "0BSD OR MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg=docsrs" - ] - } - }, - "release": { - "no-dev-version": true, - "pre-release-commit-message": "Release {{version}}", - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "replace": "## Unreleased\n\nNo changes.\n\n## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})\n", - "search": "## Unreleased\n" - }, - { - "file": "README.md", - "replace": "adler = \"{{version}}\"", - "search": "adler = \"[a-z0-9\\\\.-]+\"" - }, - { - "file": "src/lib.rs", - "replace": "https://docs.rs/adler/{{version}}", - "search": "https://docs.rs/adler/[a-z0-9\\.-]+" - } - ], - "tag-message": "{{version}}" - } - }, - "name": "adler", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jonas-schievink/adler.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "adler", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-1.0.2/benches/bench.rs", - "test": false - } - ], - "version": "1.0.2" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Fast multiple substring searching.", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [ - "memchr/std" - ] - }, - "homepage": "https://github.com/BurntSushi/aho-corasick", - "id": "aho-corasick 0.7.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "search", - "text", - "aho", - "multi" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/Cargo.toml", - "metadata": null, - "name": "aho-corasick", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "aho_corasick", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.20/src/lib.rs", - "test": true - } - ], - "version": "0.7.20" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "log", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "memchr", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast multiple substring searching.", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std", - "perf-literal" - ], - "logging": [ - "dep:log" - ], - "perf-literal": [ - "dep:memchr" - ], - "std": [ - "memchr?/std" - ] - }, - "homepage": "https://github.com/BurntSushi/aho-corasick", - "id": "aho-corasick 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "search", - "text", - "pattern", - "multi" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "aho-corasick", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/aho-corasick", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "aho_corasick", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-1.0.1/src/lib.rs", - "test": true - } - ], - "version": "1.0.1" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-parse", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-query", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "colorchoice", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "is-terminal", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "utf8parse", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "owo-colors", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "strip-ansi-escapes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-wincon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.", - "documentation": null, - "edition": "2021", - "features": { - "auto": [ - "dep:anstyle-query", - "dep:colorchoice", - "dep:is-terminal" - ], - "default": [ - "auto", - "wincon" - ], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstream", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "strip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/strip.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "wincon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/wincon.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "stream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.2/benches/stream.rs", - "test": false - } - ], - "version": "0.3.2" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "ANSI text styling", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-prefix": "" - } - }, - "name": "anstyle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/examples/dump.rs", - "test": false - } - ], - "version": "1.0.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arrayvec", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "utf8parse", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "codegenrs", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "vte_generate_state_changes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parse ANSI Style Escapes", - "documentation": null, - "edition": "2021", - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-parse", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "parselog", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/examples/parselog.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/benches/parse.rs", - "test": false - } - ], - "version": "0.2.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Look up colored console capabilities", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-query", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-query", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "report", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/examples/report.rs", - "test": false - } - ], - "version": "1.0.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Styling legacy Windows terminals", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-wincon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-wincon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-wincon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/examples/dump.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "set", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.1/examples/set.rs", - "test": false - } - ], - "version": "1.0.1" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "backtrace", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "futures", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": "dev", - "name": "syn", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "thiserror", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.66", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Flexible concrete Error type built on std::error::Error", - "documentation": "https://docs.rs/anyhow", - "edition": "2018", - "features": { - "backtrace": [ - "dep:backtrace" - ], - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "error", - "error-handling" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "anyhow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/anyhow", - "rust_version": "1.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "anyhow", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_downcast", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_downcast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ffi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_ffi.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_context", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_context.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_repr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_repr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_chain", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_chain.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ensure", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_ensure.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_macros", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_macros.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_convert", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_convert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_source", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_source.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_backtrace", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_backtrace.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_autotrait", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_autotrait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_boxed", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/tests/test_boxed.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/build.rs", - "test": false - } - ], - "version": "1.0.71" - }, - { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "matches", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.", - "documentation": "https://docs.rs/arrayvec/", - "edition": "2018", - "features": { - "array-sizes-129-255": [], - "array-sizes-33-128": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [], - "unstable-const-fn": [] - }, - "homepage": null, - "id": "arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "stack", - "vector", - "array", - "data-structure", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "arrayvec", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/arrayvec", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "arrayvec", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "extend", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/benches/extend.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "arraystring", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/benches/arraystring.rs", - "test": false - } - ], - "version": "0.5.2" - }, - { - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [], - "description": "Automatic cfg for Rust compiler features", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml", - "metadata": null, - "name": "autocfg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "autocfg", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "integers", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "traits", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "versions", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "paths", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "rustflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs", - "test": true - } - ], - "version": "1.1.0" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [], - "description": "Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids\nany usages of data-dependent branches/LUTs and thereby provides portable\n\"best effort\" constant-time operation and embedded-friendly no_std support\n", - "documentation": "https://docs.rs/base16ct", - "edition": "2021", - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hex", - "hexadecimal" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "base16ct", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/base16ct", - "rust_version": "1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "base16ct", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/tests/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base16ct-0.2.0/benches/mod.rs", - "test": false - } - ], - "version": "0.2.0" - }, - { - "authors": [ - "Alice Maz ", - "Marshall Pierce " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "structopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "encodes and decodes base64 as bytes or utf8", - "documentation": "https://docs.rs/base64", - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "base64", - "utf8", - "encode", - "decode", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/Cargo.toml", - "metadata": null, - "name": "base64", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/marshallpierce/rust-base64", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "base64", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "base64", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/base64.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "make_tables", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/examples/make_tables.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "decode", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/decode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "helpers", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/helpers.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "encode", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/tests/encode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "benchmarks", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.1/benches/benchmarks.rs", - "test": false - } - ], - "version": "0.13.1" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "base64", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.21", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of\ndata-dependent branches/LUTs and thereby provides portable \"best effort\"\nconstant-time operation and embedded-friendly no_std support\n", - "documentation": "https://docs.rs/base64ct", - "edition": "2021", - "features": { - "alloc": [], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "base64", - "pem", - "phc" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "base64ct", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/base64ct", - "rust_version": "1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "base64ct", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "bcrypt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/bcrypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "crypt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/crypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "shacrypt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/shacrypt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "url", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/url.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "standard", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/standard.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "proptests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/tests/proptests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/base64ct-1.6.0/benches/mod.rs", - "test": false - } - ], - "version": "1.6.0" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to generate structures which behave like bitflags.\n", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/bitflags/bitflags", - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "name": "bitflags", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs", - "test": true - } - ], - "version": "1.3.2" - }, - { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "typenum", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest-derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fixed size boolean arrays", - "documentation": "http://docs.rs/bitmaps", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitmaps-2.1.0/Cargo.toml", - "metadata": null, - "name": "bitmaps", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/bodil/bitmaps", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitmaps", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitmaps-2.1.0/src/lib.rs", - "test": true - } - ], - "version": "2.1.0" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "generic-array", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Buffer type for block processing of data", - "documentation": "https://docs.rs/block-buffer", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "block-buffer 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "block", - "buffer" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/Cargo.toml", - "metadata": null, - "name": "block-buffer", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "block-buffer", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.10.4/tests/mod.rs", - "test": true - } - ], - "version": "0.10.4" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing", - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.14.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "regex-automata", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "ucd-parse", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "unicode-segmentation", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A string type that is not required to be valid UTF-8.", - "documentation": "https://docs.rs/bstr", - "edition": "2021", - "features": { - "alloc": [ - "serde?/alloc" - ], - "default": [ - "std", - "unicode" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc", - "memchr/std", - "serde?/std" - ], - "unicode": [ - "dep:once_cell", - "dep:regex-automata" - ] - }, - "homepage": "https://github.com/BurntSushi/bstr", - "id": "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "str", - "byte", - "bytes", - "text" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "bstr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/bstr", - "rust_version": "1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "bstr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "graphemes", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/graphemes.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lines", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/lines.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "uppercase", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/uppercase.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "words", - "required-features": [ - "std", - "unicode" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/words.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "words-std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/words-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lines-std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/lines-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "uppercase-std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/uppercase-std.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "graphemes-std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bstr-1.4.0/examples/graphemes-std.rs", - "test": false - } - ], - "version": "1.4.0" - }, - { - "authors": [ - "Nick Fitzgerald " - ], - "categories": [ - "memory-management", - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A fast bump allocation arena for Rust.", - "documentation": "https://docs.rs/bumpalo", - "edition": "2021", - "features": { - "allocator_api": [], - "boxed": [], - "collections": [], - "default": [] - }, - "homepage": null, - "id": "bumpalo 3.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "bumpalo", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/fitzgen/bumpalo", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "bumpalo", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "try_alloc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/tests/try_alloc.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "benches", - "required-features": [ - "collections" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bumpalo-3.12.1/benches/benches.rs", - "test": false - } - ], - "version": "3.12.1" - }, - { - "authors": [ - "Hyunsik Choi " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "an utility for human-readable bytes representations", - "documentation": "https://docs.rs/bytesize/", - "edition": "2015", - "features": { - "default": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/hyunsik/bytesize/", - "id": "bytesize 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "byte", - "byte-size", - "utility", - "human-readable", - "format" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/Cargo.toml", - "metadata": null, - "name": "bytesize", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hyunsik/bytesize/", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "bytesize", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs", - "test": true - } - ], - "version": "1.2.0" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.47", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "base64", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bytesize", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cargo-platform", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-platform", - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cargo-util", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-util", - "registry": null, - "rename": null, - "req": "^0.2.3", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "clap", - "optional": false, - "registry": null, - "rename": null, - "req": "^4.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crates-io", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/crates-io", - "registry": null, - "rename": null, - "req": "^0.36.0", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [ - "http2" - ], - "kind": null, - "name": "curl", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.44", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "curl-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.59", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "env_logger", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "filetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": null, - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "git2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.16.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "git2-curl", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.17.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "glob", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hmac", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.12.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "home", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "http-auth", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "humantime", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "ignore", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "im-rc", - "optional": false, - "registry": null, - "rename": null, - "req": "^15.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "indexmap", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "is-terminal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "itertools", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "jobserver", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "lazycell", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libgit2-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.14.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "opener", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "os_info", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "v3", - "paserk", - "std", - "serde" - ], - "kind": null, - "name": "pasetors", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "pathdiff", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "pretty_env_logger", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-workspace-hack", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustfix", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "semver", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.123", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde-value", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_ignored", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "raw_value" - ], - "kind": null, - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.30", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sha1", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "shell-escape", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "strip-ansi-escapes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "tar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "termcolor", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": null, - "name": "time", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "toml", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "toml_edit", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.19.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicode-width", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicode-xid", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "url", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "cargo-test-macro", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "cargo-test-support", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "same-file", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff", - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": "build", - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "tar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "fwdansi", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_Console", - "Win32_System_Threading", - "Win32_System_JobObjects", - "Win32_Security", - "Win32_System_SystemServices" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cargo, a package manager for Rust.\n", - "documentation": "https://docs.rs/cargo", - "edition": "2021", - "features": { - "openssl": [ - "dep:openssl" - ], - "pretty-env-logger": [ - "pretty_env_logger" - ], - "pretty_env_logger": [ - "dep:pretty_env_logger" - ], - "vendored-libgit2": [ - "libgit2-sys/vendored" - ], - "vendored-openssl": [ - "openssl/vendored" - ] - }, - "homepage": "https://crates.io", - "id": "cargo 0.70.1 (path+file://$CARGO_MANIFEST_DIR)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/Cargo.toml", - "metadata": null, - "name": "cargo", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo", - "src_path": "$CARGO_MANIFEST_DIR/src/cargo/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "cargo", - "src_path": "$CARGO_MANIFEST_DIR/src/bin/cargo/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "build-std", - "src_path": "$CARGO_MANIFEST_DIR/tests/build-std/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "src_path": "$CARGO_MANIFEST_DIR/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "internal", - "src_path": "$CARGO_MANIFEST_DIR/tests/internal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$CARGO_MANIFEST_DIR/build.rs", - "test": false - } - ], - "version": "0.70.1" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Cargo's representation of a target platform.", - "documentation": "https://docs.rs/cargo-platform", - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-platform 0.1.2 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-platform)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/Cargo.toml", - "metadata": null, - "name": "cargo-platform", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-platform", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "matches", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/examples/matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_cfg", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-platform/tests/test_cfg.rs", - "test": true - } - ], - "version": "0.1.2" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Helper proc-macro for Cargo's testsuite.", - "documentation": "https://github.com/rust-lang/cargo", - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro/Cargo.toml", - "metadata": null, - "name": "cargo-test-macro", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "proc-macro" - ], - "name": "cargo-test-macro", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro/src/lib.rs", - "test": true - } - ], - "version": "0.1.0" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cargo-test-macro", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-test-macro", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cargo-util", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/cargo-util", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crates-io", - "optional": false, - "path": "$CARGO_MANIFEST_DIR/crates/crates-io", - "registry": null, - "rename": null, - "req": "*", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "filetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "zlib" - ], - "kind": null, - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "git2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.16.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "glob", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "itertools", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "v3", - "paserk", - "std", - "serde" - ], - "kind": null, - "name": "pasetors", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.123", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff", - "path" - ], - "kind": null, - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "tar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "termcolor", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": null, - "name": "time", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "toml", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "url", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": null, - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "cargo-test-support 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-support)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support/Cargo.toml", - "metadata": null, - "name": "cargo-test-support", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-test-support", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-test-support/build.rs", - "test": false - } - ], - "version": "0.1.0" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crypto-hash", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "filetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "jobserver", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.88", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "same-file", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "shell-escape", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "mac_os_10_7_support" - ], - "kind": null, - "name": "core-foundation", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"macos\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "miow", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation", - "Win32_System_Console" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Miscellaneous support code used by Cargo.", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-lang/cargo", - "id": "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/cargo-util/Cargo.toml", - "metadata": null, - "name": "cargo-util", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "cargo-util", - "src_path": "$CARGO_MANIFEST_DIR/crates/cargo-util/src/lib.rs", - "test": true - } - ], - "version": "0.2.3" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "jobserver", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "features": { - "jobserver": [ - "dep:jobserver" - ], - "parallel": [ - "jobserver" - ] - }, - "homepage": "https://github.com/rust-lang/cc-rs", - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/Cargo.toml", - "metadata": null, - "name": "cc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "gcc-shim", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/bin/gcc-shim.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cxxflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cxxflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cc_env", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cc_env.rs", - "test": true - } - ], - "version": "1.0.79" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/alexcrichton/cfg-if", - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml", - "metadata": null, - "name": "cfg-if", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cfg-if", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "xcrate", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs", - "test": true - } - ], - "version": "1.0.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "clap_builder", - "optional": false, - "registry": null, - "rename": null, - "req": "=4.2.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "clap_derive", - "optional": true, - "registry": null, - "rename": null, - "req": "=4.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "humantime", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "shlex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.77", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "color-auto", - "diff", - "examples" - ], - "kind": "dev", - "name": "trycmd", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.14.15", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unic-emoji-char", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "documentation": null, - "edition": "2021", - "features": { - "cargo": [ - "clap_builder/cargo" - ], - "color": [ - "clap_builder/color" - ], - "debug": [ - "clap_builder/debug", - "clap_derive?/debug" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [ - "clap_builder/deprecated", - "clap_derive?/deprecated" - ], - "derive": [ - "dep:clap_derive", - "dep:once_cell" - ], - "env": [ - "clap_builder/env" - ], - "error-context": [ - "clap_builder/error-context" - ], - "help": [ - "clap_builder/help" - ], - "std": [ - "clap_builder/std" - ], - "string": [ - "clap_builder/string" - ], - "suggestions": [ - "clap_builder/suggestions" - ], - "unicode": [ - "clap_builder/unicode" - ], - "unstable-doc": [ - "clap_builder/unstable-doc", - "derive" - ], - "unstable-styles": [ - "clap_builder/unstable-styles" - ], - "unstable-v5": [ - "clap_builder/unstable-v5", - "clap_derive?/unstable-v5", - "deprecated" - ], - "usage": [ - "clap_builder/usage" - ], - "wrap_help": [ - "clap_builder/wrap_help" - ] - }, - "homepage": null, - "id": "clap 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "file": "CITATION.cff", - "replace": "date-released: {{date}}", - "search": "^date-released: ....-..-.." - }, - { - "file": "CITATION.cff", - "replace": "version: {{version}}", - "search": "^version: .+\\..+\\..+" - } - ], - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "name": "clap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "stdio-fixture", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/src/bin/stdio-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "demo", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/demo.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "cargo-example", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/cargo-example.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "cargo-example-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/cargo-example-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "escaped-positional", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/escaped-positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "escaped-positional-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/escaped-positional-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "find", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/find.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "git-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/git-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "typed-derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/typed-derive.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "busybox", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/multicall-busybox.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "hostname", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/multicall-hostname.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "repl", - "required-features": [ - "help" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/repl.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "01_quick", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/01_quick.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_apps", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_apps.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_crate", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_crate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_app_settings", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/02_app_settings.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_bool", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_01_flag_bool.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_count", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_01_flag_count.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_02_option.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_mult", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_02_option_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_03_positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_mult", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_03_positional_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_04_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_05_default_values", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/03_05_default_values.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_possible", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_01_possible.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_enum", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_01_enum.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_parse", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_02_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_validate", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_02_validate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_03_relations", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_03_relations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_04_custom", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/04_04_custom.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "05_01_assert", - "required-features": [ - "cargo" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_builder/05_01_assert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "01_quick_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/01_quick.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_apps_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_apps.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_crate_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_crate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "02_app_settings_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/02_app_settings.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_bool_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_01_flag_bool.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_01_flag_count_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_01_flag_count.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_02_option.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_02_option_mult_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_02_option_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_03_positional.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_03_positional_mult_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_03_positional_mult.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_04_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_04_subcommands_alt_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_04_subcommands_alt.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "03_05_default_values_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/03_05_default_values.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_01_enum_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_01_enum.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_parse_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_02_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_02_validate_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_02_validate.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_03_relations_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_03_relations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "04_04_custom_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/04_04_custom.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "05_01_assert_derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/tutorial_derive/05_01_assert.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_augment_args", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/augment_args.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_augment_subcommands", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/augment_subcommands.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_hand_subcommand", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/hand_subcommand.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "interop_flatten_hand_args", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/derive_ref/flatten_hand_args.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "pacman", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/pacman.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "git", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-4.2.7/examples/git.rs", - "test": false - } - ], - "version": "4.2.7" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "backtrace", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.67", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "clap_lex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "strsim", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "terminal_size", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicase", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicode-width", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "color-print", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "humantime", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "shlex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.77", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "color-auto", - "diff", - "examples" - ], - "kind": "dev", - "name": "trycmd", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.14.15", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unic-emoji-char", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A simple to use, efficient, and full-featured Command Line Argument Parser", - "documentation": null, - "edition": "2021", - "features": { - "cargo": [ - "dep:once_cell" - ], - "color": [ - "dep:anstream" - ], - "debug": [ - "dep:backtrace" - ], - "default": [ - "std", - "color", - "help", - "usage", - "error-context", - "suggestions" - ], - "deprecated": [], - "env": [], - "error-context": [], - "help": [], - "std": [ - "anstyle/std" - ], - "string": [], - "suggestions": [ - "dep:strsim", - "error-context" - ], - "unicode": [ - "dep:unicode-width", - "dep:unicase" - ], - "unstable-doc": [ - "cargo", - "wrap_help", - "env", - "unicode", - "string", - "unstable-styles" - ], - "unstable-styles": [ - "color" - ], - "unstable-v5": [ - "deprecated" - ], - "usage": [], - "wrap_help": [ - "help", - "dep:terminal_size" - ] - }, - "homepage": null, - "id": "clap_builder 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_builder-4.2.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "unstable-doc" - ] - }, - "release": { - "dependent-version": "upgrade", - "shared-version": true, - "tag-name": "v{{version}}" - } - }, - "name": "clap_builder", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap_builder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_builder-4.2.7/src/lib.rs", - "test": true - } - ], - "version": "4.2.7" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Minimal, flexible command line parser", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "clap_lex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "argument", - "cli", - "arg", - "parser", - "parse" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_lex-0.4.1/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/clap-rs/clap/compare/{{tag_name}}...HEAD", - "search": "" - }, - { - "exactly": 4, - "file": "README.md", - "prerelease": true, - "replace": "github.com/clap-rs/clap/blob/{{tag_name}}/", - "search": "github.com/clap-rs/clap/blob/[^/]+/" - } - ] - } - }, - "name": "clap_lex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/clap-rs/clap/tree/master/clap_lex", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "clap_lex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/clap_lex-0.4.1/src/lib.rs", - "test": true - } - ], - "version": "0.4.1" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Global override of color control", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "colorchoice", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "colorchoice", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "clippy", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "commoncrypto-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Idiomatic Rust wrappers for Mac OS X's CommonCrypto library", - "documentation": "https://docs.rs/commoncrypto", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "lint": [ - "clippy" - ] - }, - "homepage": null, - "id": "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest", - "osx", - "commoncrypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/Cargo.toml", - "metadata": null, - "name": "commoncrypto", - "publish": null, - "readme": null, - "repository": "https://github.com/malept/rust-commoncrypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "commoncrypto", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "hash", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/tests/hash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "pbkdf2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-0.2.0/tests/pbkdf2.rs", - "test": true - } - ], - "version": "0.2.0" - }, - { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "clippy", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "FFI bindings to Mac OS X's CommonCrypto library", - "documentation": "https://docs.rs/commoncrypto-sys", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "lint": [ - "clippy" - ] - }, - "homepage": null, - "id": "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest", - "osx", - "commoncrypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/Cargo.toml", - "metadata": null, - "name": "commoncrypto-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/malept/rust-commoncrypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "commoncrypto-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "hash", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/tests/hash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "pbkdf2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/commoncrypto-sys-0.2.0/tests/pbkdf2.rs", - "test": true - } - ], - "version": "0.2.0" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard\nas defined in ITU X.660, with support for BER/DER encoding/decoding as well as\nheapless no_std (i.e. embedded) support\n", - "documentation": "https://docs.rs/const-oid", - "edition": "2021", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "db": [], - "std": [] - }, - "homepage": null, - "id": "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iso", - "iec", - "itu", - "oid" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "const-oid", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/const-oid", - "rust_version": "1.57", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "const-oid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/const-oid-0.9.2/tests/lib.rs", - "test": true - } - ], - "version": "0.9.2" - }, - { - "authors": [ - "David Peter " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast inspection of binary buffers to guess/determine the encoding", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/sharkdp/content_inspector", - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "encoding", - "binary", - "text", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/Cargo.toml", - "metadata": null, - "name": "content_inspector", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sharkdp/content_inspector", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "content_inspector", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "inspect", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/examples/inspect.rs", - "test": false - } - ], - "version": "0.2.4" - }, - { - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "os::macos-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "chrono", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "core-foundation-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "uuid", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Bindings to Core Foundation for macOS", - "documentation": null, - "edition": "2015", - "features": { - "chrono": [ - "dep:chrono" - ], - "mac_os_10_7_support": [ - "core-foundation-sys/mac_os_10_7_support" - ], - "mac_os_10_8_features": [ - "core-foundation-sys/mac_os_10_8_features" - ], - "uuid": [ - "dep:uuid" - ], - "with-chrono": [ - "chrono" - ], - "with-uuid": [ - "uuid" - ] - }, - "homepage": "https://github.com/servo/core-foundation-rs", - "id": "core-foundation 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macos", - "framework", - "objc" - ], - "license": "MIT / Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "name": "core-foundation", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "core-foundation", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "use_macro_outside_crate", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-0.9.3/tests/use_macro_outside_crate.rs", - "test": true - } - ], - "version": "0.9.3" - }, - { - "authors": [ - "The Servo Project Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Bindings to Core Foundation for macOS", - "documentation": null, - "edition": "2015", - "features": { - "mac_os_10_7_support": [], - "mac_os_10_8_features": [] - }, - "homepage": "https://github.com/servo/core-foundation-rs", - "id": "core-foundation-sys 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT / Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-apple-darwin" - } - } - }, - "name": "core-foundation-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/core-foundation-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "core-foundation-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/core-foundation-sys-0.8.4/src/lib.rs", - "test": true - } - ], - "version": "0.8.4" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "hardware-support", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-linux-android", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.95", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))", - "uses_default_features": true - } - ], - "description": "Lightweight runtime CPU feature detection for x86/x86_64 and aarch64 with\nno_std support and support for mobile targets including Android and iOS\n", - "documentation": "https://docs.rs/cpufeatures", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cpuid", - "target-feature" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/Cargo.toml", - "metadata": null, - "name": "cpufeatures", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cpufeatures", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "x86", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/tests/x86.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "aarch64", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.7/tests/aarch64.rs", - "test": true - } - ], - "version": "0.2.7" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "curl", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "percent-encoding", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "url", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Helpers for interacting with crates.io\n", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/crates/crates-io/Cargo.toml", - "metadata": null, - "name": "crates-io", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "crates_io", - "src_path": "$CARGO_MANIFEST_DIR/crates/crates-io/lib.rs", - "test": true - } - ], - "version": "0.36.0" - }, - { - "authors": [ - "Sam Rijs ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation", - "documentation": null, - "edition": "2015", - "features": { - "default": [ - "std" - ], - "nightly": [], - "std": [] - }, - "homepage": null, - "id": "crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "checksum", - "crc", - "crc32", - "simd", - "fast" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/Cargo.toml", - "metadata": null, - "name": "crc32fast", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/srijs/rust-crc32fast", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "crc32fast", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.3.2/build.rs", - "test": false - } - ], - "version": "1.3.2" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "algorithms", - "cryptography", - "data-structures", - "mathematics", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "der", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "generic-array", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rlp", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "serdect", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "html_reports" - ], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-bigint", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-integer", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num-traits", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_chacha", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of a big integer library which has been designed from\nthe ground-up for use in cryptographic applications. Provides constant-time,\nno_std-friendly implementations of modern formulas using const generics.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [], - "default": [ - "rand" - ], - "der": [ - "dep:der" - ], - "generic-array": [ - "dep:generic-array" - ], - "rand": [ - "rand_core/std" - ], - "rand_core": [ - "dep:rand_core" - ], - "rlp": [ - "dep:rlp" - ], - "serde": [ - "dep:serdect" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "crypto-bigint 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "arbitrary", - "crypto", - "bignum", - "integer", - "precision" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "crypto-bigint", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/crypto-bigint", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "crypto-bigint", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "const_residue", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/const_residue.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "impl_modulus", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/impl_modulus.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "proptests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/tests/proptests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-bigint-0.5.2/benches/bench.rs", - "test": false - } - ], - "version": "0.5.2" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "more_lengths" - ], - "kind": null, - "name": "generic-array", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.14.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "typenum", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Common cryptographic traits", - "documentation": "https://docs.rs/crypto-common", - "edition": "2018", - "features": { - "getrandom": [ - "rand_core/getrandom" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [] - }, - "homepage": null, - "id": "crypto-common 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "traits" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "crypto-common", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crypto-common", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-common-0.1.6/src/lib.rs", - "test": true - } - ], - "version": "0.1.6" - }, - { - "authors": [ - "Mark Lee" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "commoncrypto", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(target_os = \"windows\", target_os = \"macos\", target_os = \"ios\")))", - "uses_default_features": true - }, - { - "features": [ - "minwindef", - "wincrypt" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"windows\")", - "uses_default_features": true - } - ], - "description": "A wrapper for OS-level cryptographic hash functions", - "documentation": "https://docs.rs/crypto-hash", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "crypto-hash 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "hash", - "digest" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-hash-0.3.4/Cargo.toml", - "metadata": null, - "name": "crypto-hash", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/malept/crypto-hash", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "crypto-hash", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-hash-0.3.4/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - { - "authors": [ - "Frank Denis " - ], - "categories": [ - "no-std", - "cryptography", - "encoding" - ], - "default_run": null, - "dependencies": [], - "description": "Constant-time hex and base64 codecs from libsodium reimplemented in Rust", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/jedisct1/rust-ct-codecs", - "id": "ct-codecs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "base64", - "hex", - "crypto" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ct-codecs-1.1.1/Cargo.toml", - "metadata": null, - "name": "ct-codecs", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-ct-codecs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ct-codecs", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ct-codecs-1.1.1/src/lib.rs", - "test": true - } - ], - "version": "1.1.1" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "api-bindings", - "web-programming::http-client" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "curl-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "socket2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "mio", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "mio-extras", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-probe", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "schannel", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [ - "libloaderapi", - "wincrypt" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "Rust bindings to libcurl for making HTTP requests", - "documentation": "https://docs.rs/curl", - "edition": "2018", - "features": { - "default": [ - "ssl" - ], - "force-system-lib-on-osx": [ - "curl-sys/force-system-lib-on-osx" - ], - "http2": [ - "curl-sys/http2" - ], - "mesalink": [ - "curl-sys/mesalink" - ], - "ntlm": [ - "curl-sys/ntlm" - ], - "openssl-probe": [ - "dep:openssl-probe" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "poll_7_68_0": [ - "curl-sys/poll_7_68_0" - ], - "protocol-ftp": [ - "curl-sys/protocol-ftp" - ], - "rustls": [ - "curl-sys/rustls" - ], - "spnego": [ - "curl-sys/spnego" - ], - "ssl": [ - "openssl-sys", - "openssl-probe", - "curl-sys/ssl" - ], - "static-curl": [ - "curl-sys/static-curl" - ], - "static-ssl": [ - "curl-sys/static-ssl" - ], - "upkeep_7_62_0": [ - "curl-sys/upkeep_7_62_0" - ], - "zlib-ng-compat": [ - "curl-sys/zlib-ng-compat", - "static-curl" - ] - }, - "homepage": "https://github.com/alexcrichton/curl-rust", - "id": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/Cargo.toml", - "metadata": null, - "name": "curl", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/curl-rust", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "curl", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "https", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/https.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ssl_proxy", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/ssl_proxy.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ssl_cert_blob", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/ssl_cert_blob.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "aws_sigv4", - "required-features": [ - "static-curl", - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/aws_sigv4.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "multi-dl", - "required-features": [ - "ssl" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/multi-dl.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "doh", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/examples/doh.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "atexit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/atexit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "post", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/post.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "multi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/multi.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "easy", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/easy.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "protocols", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/tests/protocols.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-0.4.44/build.rs", - "test": false - } - ], - "version": "0.4.44" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libnghttp2-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": null, - "name": "libz-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "no_log_capture" - ], - "kind": null, - "name": "rustls-ffi", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [ - "winsock2", - "ws2def" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libcurl library", - "documentation": "https://docs.rs/curl-sys", - "edition": "2018", - "features": { - "default": [ - "ssl" - ], - "force-system-lib-on-osx": [], - "http2": [ - "libnghttp2-sys" - ], - "libnghttp2-sys": [ - "dep:libnghttp2-sys" - ], - "mesalink": [], - "ntlm": [], - "openssl-sys": [ - "dep:openssl-sys" - ], - "poll_7_68_0": [], - "protocol-ftp": [], - "rustls": [ - "rustls-ffi" - ], - "rustls-ffi": [ - "dep:rustls-ffi" - ], - "spnego": [], - "ssl": [ - "openssl-sys" - ], - "static-curl": [], - "static-ssl": [ - "openssl-sys/vendored" - ], - "upkeep_7_62_0": [], - "windows-static-ssl": [], - "zlib-ng-compat": [ - "libz-sys/zlib-ng", - "static-curl" - ] - }, - "homepage": null, - "id": "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": "curl", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/Cargo.toml", - "metadata": null, - "name": "curl-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/alexcrichton/curl-rust", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "curl_sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.61+curl-8.0.1/build.rs", - "test": false - } - ], - "version": "0.4.61+curl-8.0.1" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "const-oid", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "der_derive", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "flagset", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "pem-rfc7468", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "time", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules\n(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with\nfull support for heapless no_std targets\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "zeroize?/alloc" - ], - "arbitrary": [ - "dep:arbitrary", - "const-oid?/arbitrary", - "std" - ], - "derive": [ - "dep:der_derive" - ], - "flagset": [ - "dep:flagset" - ], - "oid": [ - "dep:const-oid" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "zeroize" - ], - "real": [], - "std": [ - "alloc" - ], - "time": [ - "dep:time" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "asn1", - "crypto", - "itu", - "pkcs" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "der", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/der", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "der", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "datetime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/datetime.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set_of", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/set_of.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/derive.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "pem", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/der-0.7.5/tests/pem.rs", - "test": true - } - ], - "version": "0.7.5" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "blobby", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "block-buffer", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "const-oid", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crypto-common", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": true, - "registry": null, - "rename": null, - "req": "=2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Traits for cryptographic hash functions and message authentication codes", - "documentation": "https://docs.rs/digest", - "edition": "2018", - "features": { - "alloc": [], - "blobby": [ - "dep:blobby" - ], - "block-buffer": [ - "dep:block-buffer" - ], - "const-oid": [ - "dep:const-oid" - ], - "core-api": [ - "block-buffer" - ], - "default": [ - "core-api" - ], - "dev": [ - "blobby" - ], - "mac": [ - "subtle" - ], - "oid": [ - "const-oid" - ], - "rand_core": [ - "crypto-common/rand_core" - ], - "std": [ - "alloc", - "crypto-common/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "homepage": null, - "id": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "digest", - "crypto", - "hash" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "digest", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "digest", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.10.6/src/lib.rs", - "test": true - } - ], - "version": "0.10.6" - }, - { - "authors": [ - "Kornel " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [], - "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", - "documentation": "https://docs.rs/dunce", - "edition": "2021", - "features": {}, - "homepage": "https://lib.rs/crates/dunce", - "id": "dunce 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "realpath", - "unc", - "canonicalize", - "windows", - "deunc" - ], - "license": "CC0-1.0 OR MIT-0 OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "dunce", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/dunce", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "dunce", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.4/src/lib.rs", - "test": true - } - ], - "version": "1.0.4" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "der", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "oid" - ], - "kind": null, - "name": "digest", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "digest", - "sec1" - ], - "kind": null, - "name": "elliptic-curve", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rfc6979", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "serdect", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": null, - "name": "sha2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "rand_core" - ], - "kind": null, - "name": "signature", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0, <2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "elliptic-curve", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm\n(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing\nRFC6979 deterministic signatures as well as support for added entropy\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "elliptic-curve/alloc", - "signature/alloc" - ], - "arithmetic": [ - "elliptic-curve/arithmetic" - ], - "default": [ - "digest" - ], - "der": [ - "dep:der" - ], - "dev": [ - "arithmetic", - "digest", - "elliptic-curve/dev", - "hazmat" - ], - "digest": [ - "dep:digest", - "signature/digest" - ], - "hazmat": [], - "pem": [ - "elliptic-curve/pem", - "pkcs8" - ], - "pkcs8": [ - "digest", - "elliptic-curve/pkcs8", - "der" - ], - "rfc6979": [ - "dep:rfc6979" - ], - "serde": [ - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "sha2": [ - "dep:sha2" - ], - "signing": [ - "arithmetic", - "digest", - "hazmat", - "rfc6979" - ], - "std": [ - "alloc", - "elliptic-curve/std", - "signature/std" - ], - "verifying": [ - "arithmetic", - "digest", - "hazmat" - ] - }, - "homepage": null, - "id": "ecdsa 0.16.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "nist", - "secp256k1", - "signature" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "ecdsa", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/ecdsa", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "ecdsa", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ecdsa-0.16.6/tests/lib.rs", - "test": true - } - ], - "version": "0.16.6" - }, - { - "authors": [ - "Frank Denis " - ], - "categories": [ - "algorithms", - "cryptography", - "no-std", - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ct-codecs", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "ed25519", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "getrandom", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ct-codecs", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A small, self-contained, wasm-friendly Ed25519 implementation", - "documentation": null, - "edition": "2018", - "features": { - "blind-keys": [], - "ct-codecs": [ - "dep:ct-codecs" - ], - "default": [ - "random", - "std", - "x25519", - "pem" - ], - "disable-signatures": [], - "ed25519": [ - "dep:ed25519" - ], - "getrandom": [ - "dep:getrandom" - ], - "opt_size": [], - "pem": [ - "ct-codecs" - ], - "random": [ - "getrandom" - ], - "self-verify": [], - "std": [], - "traits": [ - "ed25519" - ], - "x25519": [] - }, - "homepage": "https://github.com/jedisct1/rust-ed25519-compact", - "id": "ed25519-compact 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ed25519", - "x25519", - "eddsa", - "signature" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ed25519-compact-2.0.4/Cargo.toml", - "metadata": null, - "name": "ed25519-compact", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jedisct1/rust-ed25519-compact", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ed25519-compact", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ed25519-compact-2.0.4/src/lib.rs", - "test": true - } - ], - "version": "2.0.4" - }, - { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "homepage": null, - "id": "either 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "data-structure", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "either", - "publish": null, - "readme": "README-crates.io.md", - "repository": "https://github.com/bluss/either", - "rust_version": "1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "either", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.1/src/lib.rs", - "test": true - } - ], - "version": "1.8.1" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "base16ct", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "base64ct", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "rand_core", - "generic-array", - "zeroize" - ], - "kind": null, - "name": "crypto-bigint", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "digest", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "ff", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "zeroize" - ], - "kind": null, - "name": "generic-array", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.14.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "group", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "hex-literal", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hkdf", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "pem-rfc7468", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "pkcs8", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "subtle", - "zeroize" - ], - "kind": null, - "name": "sec1", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "serde_json", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "serdect", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha3", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "General purpose Elliptic Curve Cryptography (ECC) support, including types\nand traits for representing various elliptic curve forms, scalars, points,\nand public/secret keys composed thereof.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base16ct/alloc", - "ff?/alloc", - "group?/alloc", - "pkcs8?/alloc", - "sec1?/alloc", - "zeroize/alloc" - ], - "arithmetic": [ - "group" - ], - "bits": [ - "arithmetic", - "ff/bits" - ], - "default": [ - "arithmetic" - ], - "dev": [ - "arithmetic", - "dep:hex-literal", - "pem", - "pkcs8" - ], - "digest": [ - "dep:digest" - ], - "ecdh": [ - "arithmetic", - "digest", - "dep:hkdf" - ], - "ff": [ - "dep:ff" - ], - "group": [ - "dep:group", - "ff" - ], - "hash2curve": [ - "arithmetic", - "digest" - ], - "hazmat": [], - "jwk": [ - "dep:base64ct", - "dep:serde_json", - "alloc", - "serde", - "zeroize/alloc" - ], - "pem": [ - "dep:pem-rfc7468", - "alloc", - "arithmetic", - "pkcs8", - "sec1/pem" - ], - "pkcs8": [ - "dep:pkcs8", - "sec1" - ], - "sec1": [ - "dep:sec1" - ], - "serde": [ - "dep:serdect", - "alloc", - "pkcs8", - "sec1/serde" - ], - "std": [ - "alloc", - "rand_core/std", - "pkcs8?/std", - "sec1?/std" - ], - "voprf": [ - "digest" - ] - }, - "homepage": null, - "id": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "elliptic", - "weierstrass" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "bits", - "ecdh", - "hash2curve", - "jwk", - "pem", - "std", - "voprf" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "elliptic-curve", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/elliptic-curve", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "elliptic-curve", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "pkcs8", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/tests/pkcs8.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "secret_key", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/elliptic-curve-0.13.4/tests/secret_key.rs", - "test": true - } - ], - "version": "0.13.4" - }, - { - "authors": [], - "categories": [ - "development-tools::debugging" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "humantime", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "is-terminal", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "perf" - ], - "kind": null, - "name": "regex", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "termcolor", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A logging implementation for `log` which is configured via an environment\nvariable.\n", - "documentation": null, - "edition": "2021", - "features": { - "auto-color": [ - "dep:is-terminal", - "color" - ], - "color": [ - "dep:termcolor" - ], - "default": [ - "auto-color", - "humantime", - "regex" - ], - "humantime": [ - "dep:humantime" - ], - "regex": [ - "dep:regex" - ] - }, - "homepage": null, - "id": "env_logger 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "logging", - "log", - "logger" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/env_logger/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "env_logger", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/env_logger/", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "env_logger", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_default_format", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_default_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "in_tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/in_tests.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_format", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "default", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/default.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_logger", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/custom_logger.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "filters_from_code", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/filters_from_code.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "direct_logger", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/direct_logger.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "syslog_friendly_format", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/examples/syslog_friendly_format.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "regexp_filter", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/regexp_filter.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "log-in-log", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/log-in-log.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "log_tls_dtors", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/log_tls_dtors.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "init-twice-retains-filter", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.10.0/tests/init-twice-retains-filter.rs", - "test": true - } - ], - "version": "0.10.0" - }, - { - "authors": [ - "Chris Wong " - ], - "categories": [ - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "errno-dragonfly", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"dragonfly\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cross-platform interface to the `errno` variable.", - "documentation": "https://docs.rs/errno", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "errno 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.3.1/Cargo.toml", - "metadata": null, - "name": "errno", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - { - "authors": [ - "Michael Neumann " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Exposes errno functionality to stable Rust on DragonFlyBSD", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dragonfly" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml", - "metadata": null, - "name": "errno-dragonfly", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mneumann/errno-dragonfly-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno-dragonfly", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs", - "test": false - } - ], - "version": "0.1.2" - }, - { - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wyhash", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "instant", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [ - "js" - ], - "kind": "dev", - "name": "getrandom", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [ - "wasm-bindgen" - ], - "kind": "dev", - "name": "instant", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))", - "uses_default_features": true - } - ], - "description": "A simple and fast random number generator", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "fastrand 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/Cargo.toml", - "metadata": null, - "name": "fastrand", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "rust_version": "1.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fastrand", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "smoke", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/tests/smoke.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "char", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/tests/char.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.9.0/benches/bench.rs", - "test": false - } - ], - "version": "1.9.0" - }, - { - "authors": [ - "Sean Bowe ", - "Jack Grigg " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bitvec", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "byteorder", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "ff_derive", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "i128" - ], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "blake2b_simd", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Library for building and interfacing with finite fields", - "documentation": "https://docs.rs/ff/", - "edition": "2021", - "features": { - "alloc": [], - "bits": [ - "bitvec" - ], - "bitvec": [ - "dep:bitvec" - ], - "byteorder": [ - "dep:byteorder" - ], - "default": [ - "bits", - "std" - ], - "derive": [ - "byteorder", - "ff_derive" - ], - "derive_bits": [ - "bits", - "ff_derive/bits" - ], - "ff_derive": [ - "dep:ff_derive" - ], - "std": [ - "alloc" - ] - }, - "homepage": "https://github.com/zkcrypto/ff", - "id": "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "ff", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/zkcrypto/ff", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "ff", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "required-features": [ - "derive" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ff-0.13.0/tests/derive.rs", - "test": true - } - ], - "version": "0.13.0" - }, - { - "authors": [ - "Fiat Crypto library authors " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Fiat-crypto generated Rust", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/mit-plv/fiat-crypto", - "id": "fiat-crypto 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0 OR BSD-1-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.20/Cargo.toml", - "metadata": null, - "name": "fiat-crypto", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mit-plv/fiat-crypto", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fiat-crypto", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.20/src/lib.rs", - "test": true - } - ], - "version": "0.1.20" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "redox_syscall", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/filetime", - "id": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "timestamp", - "mtime" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.21/Cargo.toml", - "metadata": null, - "name": "filetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "filetime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.21/src/lib.rs", - "test": true - } - ], - "version": "0.2.21" - }, - { - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cloudflare-zlib-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crc32fast", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libz-ng-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libz-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "with-alloc" - ], - "kind": null, - "name": "miniz_oxide", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "with-alloc" - ], - "kind": null, - "name": "miniz_oxide", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))", - "uses_default_features": false - } - ], - "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n", - "documentation": "https://docs.rs/flate2", - "edition": "2018", - "features": { - "any_zlib": [], - "cloudflare-zlib-sys": [ - "dep:cloudflare-zlib-sys" - ], - "cloudflare_zlib": [ - "any_zlib", - "cloudflare-zlib-sys" - ], - "default": [ - "rust_backend" - ], - "libz-ng-sys": [ - "dep:libz-ng-sys" - ], - "libz-sys": [ - "dep:libz-sys" - ], - "miniz-sys": [ - "rust_backend" - ], - "miniz_oxide": [ - "dep:miniz_oxide" - ], - "rust_backend": [ - "miniz_oxide" - ], - "zlib": [ - "any_zlib", - "libz-sys" - ], - "zlib-default": [ - "any_zlib", - "libz-sys/default" - ], - "zlib-ng": [ - "any_zlib", - "libz-ng-sys" - ], - "zlib-ng-compat": [ - "zlib", - "libz-sys/zlib-ng" - ] - }, - "homepage": "https://github.com/rust-lang/flate2-rs", - "id": "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "gzip", - "deflate", - "zlib", - "zlib-ng", - "encoding" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "flate2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/flate2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "flate2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzmultidecoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzmultidecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "decompress_file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/decompress_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzmultidecoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzmultidecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzbuilder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzbuilder.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzdecoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzdecoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "compress_file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/compress_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "gzencoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/gzencoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibencoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "zlibdecoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/zlibdecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflatedecoder-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflatedecoder-read.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "deflateencoder-bufread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/examples/deflateencoder-bufread.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zero-write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/zero-write.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "gunzip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/gunzip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "early-flush", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/early-flush.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "empty-read", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.26/tests/empty-read.rs", - "test": true - } - ], - "version": "1.0.26" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Fowler–Noll–Vo hash function", - "documentation": "https://doc.servo.org/fnv/", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0 / MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/Cargo.toml", - "metadata": null, - "name": "fnv", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/rust-fnv", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "fnv", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs", - "test": true - } - ], - "version": "1.0.7" - }, - { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "foreign-types-shared", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A framework for Rust wrappers over C APIs", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/Cargo.toml", - "metadata": null, - "name": "foreign-types", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/foreign-types", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "foreign-types", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/src/lib.rs", - "test": true - } - ], - "version": "0.3.2" - }, - { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "An internal crate used by foreign-types", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/Cargo.toml", - "metadata": null, - "name": "foreign-types-shared", - "publish": null, - "readme": null, - "repository": "https://github.com/sfackler/foreign-types", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "foreign-types-shared", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "percent-encoding", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.1.0/Cargo.toml", - "metadata": null, - "name": "form_urlencoded", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url", - "rust_version": "1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "form_urlencoded", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.1.0/src/lib.rs", - "test": false - } - ], - "version": "1.1.0" - }, - { - "authors": [ - "kennytm " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "termcolor", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Forwards a byte string with ANSI escape code to a termcolor terminal", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "fwdansi 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "windows", - "console", - "terminal", - "color" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/Cargo.toml", - "metadata": null, - "name": "fwdansi", - "publish": null, - "readme": null, - "repository": "https://github.com/kennytm/fwdansi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "fwdansi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "run-rustc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/examples/run-rustc.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "colors", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/examples/colors.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.1.0/tests/tests.rs", - "test": true - } - ], - "version": "1.1.0" - }, - { - "authors": [ - "Bartłomiej Kamiński ", - "Aaron Trent " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "typenum", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "version_check", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generic types implementing functionality of arrays", - "documentation": "http://fizyk20.github.io/generic-array/generic_array/", - "edition": "2015", - "features": { - "more_lengths": [], - "serde": [ - "dep:serde" - ], - "zeroize": [ - "dep:zeroize" - ] - }, - "homepage": null, - "id": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "generic", - "array" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde", - "zeroize" - ] - } - } - }, - "name": "generic-array", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/fizyk20/generic-array.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "generic_array", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.7/build.rs", - "test": false - } - ], - "version": "0.14.7" - }, - { - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "os", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.62", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.139", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": false - } - ], - "description": "A small cross-platform library for retrieving random data from system source", - "documentation": "https://docs.rs/getrandom", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "custom": [], - "js": [ - "wasm-bindgen", - "js-sys" - ], - "js-sys": [ - "dep:js-sys" - ], - "rdrand": [], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "libc/rustc-dep-of-std", - "wasi/rustc-dep-of-std" - ], - "std": [], - "test-in-browser": [], - "wasm-bindgen": [ - "dep:wasm-bindgen" - ] - }, - "homepage": null, - "id": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "custom" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "getrandom", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/getrandom", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "getrandom", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "normal", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/normal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "rdrand", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/rdrand.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "custom", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/tests/custom.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "buffer", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.9/benches/buffer.rs", - "test": false - } - ], - "version": "0.2.9" - }, - { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [ - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libgit2-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.14.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "url", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "paste", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "structopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-probe", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(unix, not(target_os = \"macos\")))", - "uses_default_features": true - } - ], - "description": "Bindings to libgit2 for interoperating with git repositories. This library is\nboth threadsafe and memory safe and allows both reading and writing git\nrepositories.\n", - "documentation": "https://docs.rs/git2", - "edition": "2018", - "features": { - "default": [ - "ssh", - "https", - "ssh_key_from_memory" - ], - "https": [ - "libgit2-sys/https", - "openssl-sys", - "openssl-probe" - ], - "openssl-probe": [ - "dep:openssl-probe" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "ssh": [ - "libgit2-sys/ssh" - ], - "ssh_key_from_memory": [ - "libgit2-sys/ssh_key_from_memory" - ], - "unstable": [], - "vendored-libgit2": [ - "libgit2-sys/vendored" - ], - "vendored-openssl": [ - "openssl-sys/vendored", - "libgit2-sys/vendored-openssl" - ], - "zlib-ng-compat": [ - "libgit2-sys/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "git" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/Cargo.toml", - "metadata": null, - "name": "git2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "git2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "rev-list", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/rev-list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "rev-parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/rev-parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "cat-file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/cat-file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "fetch", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/fetch.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "status", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/status.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "diff", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/diff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "ls-remote", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/ls-remote.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "log", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/log.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "tag", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/tag.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "init", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/init.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "pull", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/pull.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "blame", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/blame.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "clone", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/clone.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "add", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/examples/add.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "get_extensions", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/get_extensions.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "add_extensions", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/add_extensions.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "global_state", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/global_state.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "remove_extensions", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-0.16.0/tests/remove_extensions.rs", - "test": true - } - ], - "version": "0.16.0" - }, - { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "curl", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.33", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "git2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "url", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "civet", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "conduit", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "conduit-git-http-backend", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Backend for an HTTP transport in libgit2 powered by libcurl.\n\nIntended to be used with the git2 crate.\n", - "documentation": "https://docs.rs/git2-curl", - "edition": "2018", - "features": { - "zlib-ng-compat": [ - "git2/zlib-ng-compat", - "curl/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "git2-curl 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/Cargo.toml", - "metadata": null, - "name": "git2-curl", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "git2-curl", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "all", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/git2-curl-0.17.0/tests/all.rs", - "test": true - } - ], - "version": "0.17.0" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Support for matching file paths against Unix shell style patterns.\n", - "documentation": "https://docs.rs/glob/0.3.1", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/rust-lang/glob", - "id": "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/Cargo.toml", - "metadata": null, - "name": "glob", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "glob", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "glob-std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.1/tests/glob-std.rs", - "test": true - } - ], - "version": "0.3.1" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "aho-corasick", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": null, - "name": "bstr", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "fnv", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "perf", - "std" - ], - "kind": null, - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.104", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "glob", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Cross platform single glob and glob set matching. Glob set matching is the\nprocess of matching one or more glob patterns against a single candidate path\nsimultaneously, and returning all of the globs that matched.\n", - "documentation": "https://docs.rs/globset", - "edition": "2018", - "features": { - "default": [ - "log" - ], - "log": [ - "dep:log" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "simd-accel": [] - }, - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "id": "globset 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "regex", - "glob", - "multiple", - "set", - "pattern" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/Cargo.toml", - "metadata": null, - "name": "globset", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "globset", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/globset-0.4.10/benches/bench.rs", - "test": false - } - ], - "version": "0.4.10" - }, - { - "authors": [ - "Sean Bowe ", - "Jack Grigg " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ff", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "memuse", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rand_xorshift", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Elliptic curve group traits and utilities", - "documentation": "https://docs.rs/group/", - "edition": "2021", - "features": { - "alloc": [], - "default": [ - "alloc" - ], - "memuse": [ - "dep:memuse" - ], - "rand": [ - "dep:rand" - ], - "rand_xorshift": [ - "dep:rand_xorshift" - ], - "tests": [ - "alloc", - "rand", - "rand_xorshift" - ], - "wnaf-memuse": [ - "alloc", - "memuse" - ] - }, - "homepage": "https://github.com/zkcrypto/group", - "id": "group 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/group-0.13.0/Cargo.toml", - "metadata": null, - "name": "group", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/zkcrypto/group", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "group", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/group-0.13.0/src/lib.rs", - "test": true - } - ], - "version": "0.13.0" - }, - { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ahash", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bumpalo", - "optional": true, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rayon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust port of Google's SwissTable hash map", - "documentation": null, - "edition": "2021", - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "name": "hashbrown", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "rust_version": "1.56.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hashbrown", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "rayon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "hasher", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "insert_unique_unchecked", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs", - "test": false - } - ], - "version": "0.12.3" - }, - { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Hermit system calls definitions.", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/Cargo.toml", - "metadata": null, - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/rusty-hermit", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - { - "authors": [ - "KokaKiwi " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Encoding and decoding data into/from hexadecimal representation.", - "documentation": "https://docs.rs/hex/", - "edition": "2015", - "features": { - "benchmarks": [] - }, - "homepage": null, - "id": "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/Cargo.toml", - "metadata": null, - "name": "hex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "hex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/src/lib.rs", - "test": true - } - ], - "version": "0.3.2" - }, - { - "authors": [ - "KokaKiwi " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "faster-hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustc-hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Encoding and decoding data into/from hexadecimal representation.", - "documentation": "https://docs.rs/hex/", - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "no_std", - "hex" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/KokaKiwi/rust-hex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "version-number", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/tests/version-number.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "hex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/benches/hex.rs", - "test": false - } - ], - "version": "0.4.3" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "hmac", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.12.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "blobby", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha-1", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)", - "documentation": null, - "edition": "2018", - "features": { - "std": [ - "hmac/std" - ] - }, - "homepage": "https://github.com/RustCrypto/KDFs/", - "id": "hkdf 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "HKDF", - "KDF" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hkdf", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/KDFs/", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hkdf", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hkdf-0.12.3/benches/mod.rs", - "test": false - } - ], - "version": "0.12.3" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "mac" - ], - "kind": null, - "name": "digest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "md-5", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha-1", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "streebog", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Generic implementation of Hash-based Message Authentication Code (HMAC)", - "documentation": "https://docs.rs/hmac", - "edition": "2018", - "features": { - "reset": [], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "mac", - "hmac", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "hmac", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/MACs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hmac", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hmac-0.12.1/tests/mod.rs", - "test": true - } - ], - "version": "0.12.1" - }, - { - "authors": [ - "Brian Anderson " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_UI_Shell" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Shared definitions of home directories.", - "documentation": "https://docs.rs/home", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "home 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.5/Cargo.toml", - "metadata": null, - "name": "home", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cargo", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "home", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/home-0.5.5/src/lib.rs", - "test": true - } - ], - "version": "0.5.5" - }, - { - "authors": [], - "categories": [ - "authentication", - "parser-implementations", - "web-programming::http-client" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "base64", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.21.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "digest", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hex", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "http", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "md-5", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sha2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "HTTP authentication: parse challenge lists, respond to Basic and Digest challenges. Likely to be extended with server support and additional auth schemes.", - "documentation": null, - "edition": "2018", - "features": { - "base64": [ - "dep:base64" - ], - "basic-scheme": [ - "base64" - ], - "default": [ - "basic-scheme", - "digest-scheme" - ], - "digest": [ - "dep:digest" - ], - "digest-scheme": [ - "digest", - "hex", - "md-5", - "rand", - "sha2" - ], - "hex": [ - "dep:hex" - ], - "http": [ - "dep:http" - ], - "log": [ - "dep:log" - ], - "md-5": [ - "dep:md-5" - ], - "rand": [ - "dep:rand" - ], - "sha2": [ - "dep:sha2" - ], - "trace": [ - "log" - ] - }, - "homepage": null, - "id": "http-auth 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "http", - "authentication", - "digest", - "basic" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "http-auth", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/scottlamb/http-auth", - "rust_version": "1.57.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "http-auth", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "reqwest", - "required-features": [ - "http" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/http-auth-0.1.8/examples/reqwest.rs", - "test": false - } - ], - "version": "0.1.8" - }, - { - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "chrono", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/tailhook/humantime", - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml", - "metadata": null, - "name": "humantime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_format", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_format.rs", - "test": false - } - ], - "version": "2.1.0" - }, - { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "unicode-bidi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicode-normalization", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "assert_matches", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tester", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/Cargo.toml", - "metadata": null, - "name": "idna", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "rust_version": "1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "idna", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/tests/unit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "all", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.3.0/benches/all.rs", - "test": false - } - ], - "version": "0.3.0" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "globset", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "same-file", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "thread_local", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-channel", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-util", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A fast library for efficiently matching ignore files such as `.gitignore`\nagainst file paths.\n", - "documentation": "https://docs.rs/ignore", - "edition": "2018", - "features": { - "simd-accel": [ - "globset/simd-accel" - ] - }, - "homepage": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "id": "ignore 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "glob", - "ignore", - "gitignore", - "pattern", - "file" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/Cargo.toml", - "metadata": null, - "name": "ignore", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ignore", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "walk", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/examples/walk.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "gitignore_matched_path_or_any_parents_tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ignore-0.4.20/tests/gitignore_matched_path_or_any_parents_tests.rs", - "test": true - } - ], - "version": "0.4.20" - }, - { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bitmaps", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "proptest", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quickcheck", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand_xoshiro", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rayon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "refpool", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sized-chunks", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "typenum", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "metrohash", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest-derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "version_check", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Immutable collection datatypes (the fast but not thread safe version)", - "documentation": "http://immutable.rs/", - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "debug": [], - "pool": [ - "refpool", - "sized-chunks/refpool" - ], - "proptest": [ - "dep:proptest" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "refpool": [ - "dep:refpool" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": "http://immutable.rs/", - "id": "im-rc 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "immutable", - "persistent", - "hamt", - "b-tree", - "rrb-tree" - ], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "im-rc", - "publish": null, - "readme": "../../README.md", - "repository": "https://github.com/bodil/im-rs", - "rust_version": "1.46.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "im-rc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/./src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/im-rc-15.1.0/./build.rs", - "test": false - } - ], - "version": "15.1.0" - }, - { - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "raw" - ], - "kind": null, - "name": "hashbrown", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "quickcheck", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rayon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-rayon", - "optional": true, - "registry": null, - "rename": "rustc-rayon", - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fxhash", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "itertools", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A hash table with consistent order and fast iteration.", - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "quickcheck": [ - "dep:quickcheck" - ], - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "homepage": null, - "id": "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hashmap", - "no_std" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "arbitrary", - "quickcheck", - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "indexmap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "indexmap", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "macros_full_path", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/macros_full_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "quick", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "equivalent_trait", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/equivalent_trait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "faststring", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/benches/faststring.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.3/build.rs", - "test": false - } - ], - "version": "1.9.3" - }, - { - "authors": [ - "sebcrozet " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "stdweb", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": null, - "name": "web-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "stdweb", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": null, - "name": "web-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "stdweb", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": null, - "name": "web-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - } - ], - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "documentation": null, - "edition": "2018", - "features": { - "inaccurate": [], - "js-sys": [ - "dep:js-sys" - ], - "now": [], - "stdweb": [ - "dep:stdweb" - ], - "wasm-bindgen": [ - "js-sys", - "wasm-bindgen_rs", - "web-sys" - ], - "wasm-bindgen_rs": [ - "dep:wasm-bindgen_rs" - ], - "web-sys": [ - "dep:web-sys" - ] - }, - "homepage": null, - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "wasm" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml", - "metadata": null, - "name": "instant", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "instant", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs", - "test": true - } - ], - "version": "0.1.12" - }, - { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "os", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "fs-err", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "async-std", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "net", - "os-ext" - ], - "kind": null, - "name": "mio", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io_safety" - ], - "kind": null, - "name": "os_pipe", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "socket2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io-std", - "fs", - "net", - "process" - ], - "kind": null, - "name": "tokio", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.96", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hermit-abi", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_System_IO", - "Win32_System_Threading" - ], - "kind": null, - "name": "windows-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A low-level I/O ownership and borrowing library", - "documentation": null, - "edition": "2018", - "features": { - "async-std": [ - "dep:async-std" - ], - "close": [ - "libc", - "hermit-abi", - "windows-sys" - ], - "default": [ - "close" - ], - "fs-err": [ - "dep:fs-err" - ], - "hermit-abi": [ - "dep:hermit-abi" - ], - "libc": [ - "dep:libc" - ], - "mio": [ - "dep:mio" - ], - "os_pipe": [ - "dep:os_pipe" - ], - "socket2": [ - "dep:socket2" - ], - "tokio": [ - "dep:tokio" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "homepage": null, - "id": "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "io" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/Cargo.toml", - "metadata": null, - "name": "io-lifetimes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/io-lifetimes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "io-lifetimes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.10/build.rs", - "test": false - } - ], - "version": "1.0.10" - }, - { - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "io-lifetimes", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "atty", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.110", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "termios" - ], - "kind": null, - "name": "rustix", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.37.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hermit-abi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Test whether a given stream is a terminal", - "documentation": "http://docs.rs/is-terminal", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.7/Cargo.toml", - "metadata": null, - "name": "is-terminal", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "is-terminal", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.7/src/lib.rs", - "test": true - } - ], - "version": "0.4.7" - }, - { - "authors": [ - "bluss" - ], - "categories": [ - "algorithms", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "either", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "=0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "paste", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "permutohedron", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Extra iterator adaptors, iterator methods, free functions, and macros.", - "documentation": "https://docs.rs/itertools/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "use_alloc": [], - "use_std": [ - "use_alloc", - "either/use_std" - ] - }, - "homepage": null, - "id": "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iterator", - "data-structure", - "zip", - "product", - "group-by" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "name": "itertools", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-itertools/itertools", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "itertools", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "iris", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/examples/iris.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_std.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "adaptors_no_collect", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/adaptors_no_collect.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "merge_join", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/merge_join.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "flatten_ok", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/flatten_ok.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "peeking_take_while", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/peeking_take_while.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "macros_hygiene", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/macros_hygiene.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tuples", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/tuples.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "quick", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "specializations", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/specializations.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_core", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/test_core.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/tests/zip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tuple_combinations", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuple_combinations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tuples", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tuples.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "fold_specialization", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/fold_specialization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "combinations_with_replacement", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations_with_replacement.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "tree_fold1", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/tree_fold1.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench1", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/bench1.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "combinations", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/combinations.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "powerset", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.5/benches/powerset.rs", - "test": false - } - ], - "version": "0.10.5" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "no-panic", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast integer primitive to string conversion", - "documentation": "https://docs.rs/itoa", - "edition": "2018", - "features": { - "no-panic": [ - "dep:no-panic" - ] - }, - "homepage": null, - "id": "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "integer" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "itoa", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/itoa", - "rust_version": "1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "itoa", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.6/benches/bench.rs", - "test": false - } - ], - "version": "1.0.6" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "futures", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tokio-core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tokio-process", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.50", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "An implementation of the GNU make jobserver for Rust\n", - "documentation": "https://docs.rs/jobserver", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/jobserver-rs", - "id": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/Cargo.toml", - "metadata": null, - "name": "jobserver", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/jobserver-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "jobserver", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "client", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/client.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "server", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/server.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "client-of-myself", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/client-of-myself.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "make-as-a-client", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/make-as-a-client.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "helper", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.26/tests/helper.rs", - "test": true - } - ], - "version": "0.1.26" - }, - { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.3.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "Headers", - "Response", - "ResponseInit" - ], - "kind": "dev", - "name": "web-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "Bindings for all JS global objects and functions in all JS environments like\nNode.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.\n", - "documentation": "https://docs.rs/js-sys", - "edition": "2018", - "features": {}, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "js-sys 0.3.61 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/Cargo.toml", - "metadata": null, - "name": "js-sys", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "js-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/tests/wasm/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "headless", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/js-sys-0.3.61/tests/headless.rs", - "test": true - } - ], - "version": "0.3.61" - }, - { - "authors": [ - "Marvin Löbel " - ], - "categories": [ - "no-std", - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "spin", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro for declaring lazily evaluated statics in Rust.", - "documentation": "https://docs.rs/lazy_static", - "edition": "2015", - "features": { - "spin": [ - "dep:spin" - ], - "spin_no_std": [ - "spin" - ] - }, - "homepage": null, - "id": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macro", - "lazy", - "static" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/Cargo.toml", - "metadata": null, - "name": "lazy_static", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang-nursery/lazy-static.rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "lazy_static", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "no_std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/no_std.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/tests/test.rs", - "test": true - } - ], - "version": "1.4.0" - }, - { - "authors": [ - "Alex Crichton ", - "Nikita Pekin " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "clippy", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library providing a lazily filled Cell struct", - "documentation": "http://indiv0.github.io/lazycell/lazycell/", - "edition": "2015", - "features": { - "clippy": [ - "dep:clippy" - ], - "nightly": [], - "nightly-testing": [ - "clippy", - "nightly" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "lazycell 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazycell", - "lazy", - "cell", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/Cargo.toml", - "metadata": null, - "name": "lazycell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/indiv0/lazycell", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "lazycell", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/src/lib.rs", - "test": true - } - ], - "version": "1.3.0" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Raw FFI bindings to platform libraries like libc.\n", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/libc", - "id": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "const-extern-fn", - "extra_traits" - ] - } - } - }, - "name": "libc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "const_fn", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/tests/const_fn.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.142/build.rs", - "test": false - } - ], - "version": "0.2.142" - }, - { - "authors": [ - "Josh Triplett ", - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libssh2-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": null, - "name": "libz-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "parallel" - ], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libgit2 library", - "documentation": null, - "edition": "2018", - "features": { - "https": [ - "openssl-sys" - ], - "libssh2-sys": [ - "dep:libssh2-sys" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "ssh": [ - "libssh2-sys" - ], - "ssh_key_from_memory": [], - "vendored": [], - "vendored-openssl": [ - "openssl-sys/vendored" - ], - "zlib-ng-compat": [ - "libz-sys/zlib-ng", - "libssh2-sys?/zlib-ng-compat" - ] - }, - "homepage": null, - "id": "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "git2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/Cargo.toml", - "metadata": null, - "name": "libgit2-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/rust-lang/git2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "libgit2_sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libgit2-sys-0.14.1+1.5.0/build.rs", - "test": false - } - ], - "version": "0.14.1+1.5.0" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.24", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "FFI bindings for libnghttp2 (nghttp2)\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/nghttp2-rs", - "id": "libnghttp2-sys 0.1.7+1.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "nghttp2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/Cargo.toml", - "metadata": null, - "name": "libnghttp2-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/nghttp2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libnghttp2-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "smoke", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/examples/smoke.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libnghttp2-sys-0.1.7+1.45.0/build.rs", - "test": false - } - ], - "version": "0.1.7+1.45.0" - }, - { - "authors": [ - "Alex Crichton ", - "Wez Furlong ", - "Matteo Bigoi " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "libc" - ], - "kind": null, - "name": "libz-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9.35", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9.35", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Native bindings to the libssh2 library", - "documentation": "https://docs.rs/libssh2-sys", - "edition": "2015", - "features": { - "openssl-on-win32": [ - "openssl-sys" - ], - "openssl-sys": [ - "dep:openssl-sys" - ], - "vendored-openssl": [ - "openssl-sys/vendored" - ], - "zlib-ng-compat": [ - "libz-sys/zlib-ng" - ] - }, - "homepage": null, - "id": "libssh2-sys 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "ssh2", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/Cargo.toml", - "metadata": null, - "name": "libssh2-sys", - "publish": null, - "readme": null, - "repository": "https://github.com/alexcrichton/ssh2-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libssh2_sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libssh2-sys-0.2.23/build.rs", - "test": false - } - ], - "version": "0.2.23" - }, - { - "authors": [ - "Alex Crichton ", - "Josh Triplett " - ], - "categories": [ - "compression", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.43", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cmake", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.44", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "Low-level bindings to the system libz library (also known as zlib).", - "documentation": null, - "edition": "2018", - "features": { - "asm": [], - "cmake": [ - "dep:cmake" - ], - "default": [ - "libc", - "stock-zlib" - ], - "libc": [ - "dep:libc" - ], - "static": [], - "stock-zlib": [], - "zlib-ng": [ - "libc", - "cmake" - ] - }, - "homepage": null, - "id": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "zlib", - "zlib-ng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "z", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/Cargo.toml", - "metadata": null, - "name": "libz-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libz-sys", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "libz-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.9/build.rs", - "test": false - } - ], - "version": "1.1.9" - }, - { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generated bindings for Linux's userspace API", - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "errno": [], - "general": [], - "ioctl": [], - "netlink": [], - "no_std": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [] - }, - "homepage": null, - "id": "linux-raw-sys 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.3.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "ioctl", - "netlink" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "name": "linux-raw-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "linux-raw-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.3.7/src/lib.rs", - "test": true - } - ], - "version": "0.3.7" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "development-tools::debugging" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "sval", - "optional": true, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "value-bag", - "optional": true, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "sval", - "optional": false, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "test" - ], - "kind": "dev", - "name": "value-bag", - "optional": false, - "registry": null, - "rename": null, - "req": "=1.0.0-alpha.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A lightweight logging facade for Rust\n", - "documentation": "https://docs.rs/log", - "edition": "2015", - "features": { - "kv_unstable": [ - "value-bag" - ], - "kv_unstable_serde": [ - "kv_unstable_std", - "value-bag/serde", - "serde" - ], - "kv_unstable_std": [ - "std", - "kv_unstable", - "value-bag/error" - ], - "kv_unstable_sval": [ - "kv_unstable", - "value-bag/sval", - "sval" - ], - "max_level_debug": [], - "max_level_error": [], - "max_level_info": [], - "max_level_off": [], - "max_level_trace": [], - "max_level_warn": [], - "release_max_level_debug": [], - "release_max_level_error": [], - "release_max_level_info": [], - "release_max_level_off": [], - "release_max_level_trace": [], - "release_max_level_warn": [], - "serde": [ - "dep:serde" - ], - "std": [], - "sval": [ - "dep:sval" - ], - "value-bag": [ - "dep:value-bag" - ] - }, - "homepage": null, - "id": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "logging" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std", - "serde", - "kv_unstable_std", - "kv_unstable_sval", - "kv_unstable_serde" - ] - } - } - }, - "name": "log", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/log", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "log", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "filters", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/filters.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "macros", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/tests/macros.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "value", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/benches/value.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.17/build.rs", - "test": false - } - ], - "version": "0.4.17" - }, - { - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Safe interface to memchr.", - "documentation": "https://docs.rs/memchr/", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [ - "dep:libc" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/BurntSushi/memchr", - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memchr", - "char", - "scan", - "strchr", - "string" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml", - "metadata": null, - "name": "memchr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "memchr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs", - "test": false - } - ], - "version": "2.5.0" - }, - { - "authors": [ - "Frommi ", - "oyvindln " - ], - "categories": [ - "compression" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "adler", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "simd-adler32", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz", - "documentation": "https://docs.rs/miniz_oxide", - "edition": "2018", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "with-alloc" - ], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "adler/rustc-dep-of-std" - ], - "simd": [ - "simd-adler32" - ], - "simd-adler32": [ - "dep:simd-adler32" - ], - "std": [], - "with-alloc": [] - }, - "homepage": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "id": "miniz_oxide 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "zlib", - "miniz", - "deflate", - "encoding" - ], - "license": "MIT OR Zlib OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.7.1/Cargo.toml", - "metadata": null, - "name": "miniz_oxide", - "publish": null, - "readme": "Readme.md", - "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "miniz_oxide", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.7.1/src/lib.rs", - "test": true - } - ], - "version": "0.7.1" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_Threading", - "Win32_System_WindowsProgramming" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "socket2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A zero overhead I/O library for Windows, focusing on IOCP and async I/O\nabstractions.\n", - "documentation": "https://docs.rs/miow", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/yoshuawuyts/miow", - "id": "miow 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "iocp", - "windows", - "io", - "overlapped" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.5.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "miow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/yoshuawuyts/miow", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "miow", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/miow-0.5.0/src/lib.rs", - "test": true - } - ], - "version": "0.5.0" - }, - { - "authors": [ - "Richard Dodd " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Takes an iterator over chars and returns a new iterator with all line endings (\\r, \\n, or \\r\\n) as \\n", - "documentation": "https://derekdreery.github.io/normalize-line-endings/normalize_line_endings/index.html", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chars", - "line", - "ending", - "normalize" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/Cargo.toml", - "metadata": null, - "name": "normalize-line-endings", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/derekdreery/normalize-line-endings", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "normalize-line-endings", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/src/lib.rs", - "test": true - } - ], - "version": "0.3.0" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "science", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libm", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Numeric traits for generic mathematics", - "documentation": "https://docs.rs/num-traits", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "i128": [], - "libm": [ - "dep:libm" - ], - "std": [] - }, - "homepage": "https://github.com/rust-num/num-traits", - "id": "num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "mathematics", - "numerics" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "std" - ] - } - } - }, - "name": "num-traits", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-num/num-traits", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "num-traits", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "cast", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/tests/cast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.15/build.rs", - "test": false - } - ], - "version": "0.2.15" - }, - { - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "atomic-polyfill", - "optional": true, - "registry": null, - "rename": "atomic_polyfill", - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "critical-section", - "optional": true, - "registry": null, - "rename": "critical_section", - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "parking_lot_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "critical-section", - "optional": false, - "registry": null, - "rename": "critical_section", - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-utils", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Single assignment cells and lazy values.", - "documentation": "https://docs.rs/once_cell", - "edition": "2021", - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "critical-section" - ], - "atomic_polyfill": [ - "dep:atomic_polyfill" - ], - "critical-section": [ - "critical_section", - "atomic_polyfill" - ], - "critical_section": [ - "dep:critical_section" - ], - "default": [ - "std" - ], - "parking_lot": [ - "parking_lot_core" - ], - "parking_lot_core": [ - "dep:parking_lot_core" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "homepage": null, - "id": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazy", - "static" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "once_cell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "once_cell", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench_acquire", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench_acquire.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "bench_vs_lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/bench_vs_lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "reentrant_init_deadlocks", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/reentrant_init_deadlocks.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "regex", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/regex.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "test_synchronization", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/examples/test_synchronization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "it", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.17.1/tests/it.rs", - "test": true - } - ], - "version": "1.17.1" - }, - { - "authors": [ - "Brian Bowman " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bstr", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"linux\")", - "uses_default_features": true - }, - { - "features": [ - "shellapi" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Open a file or link using the system default program.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "opener 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "open", - "default", - "launcher", - "browser" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/Cargo.toml", - "metadata": null, - "name": "opener", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Seeker14491/opener", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "opener", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "version-numbers", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/opener-0.5.2/tests/version-numbers.rs", - "test": true - } - ], - "version": "0.5.2" - }, - { - "authors": [ - "Steven Fackler " - ], - "categories": [ - "cryptography", - "api-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-sys", - "optional": false, - "registry": null, - "rename": "ffi", - "req": "^0.9.87", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "foreign-types", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "openssl-macros", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "OpenSSL bindings", - "documentation": null, - "edition": "2018", - "features": { - "bindgen": [ - "ffi/bindgen" - ], - "default": [], - "unstable_boringssl": [ - "ffi/unstable_boringssl" - ], - "v101": [], - "v102": [], - "v110": [], - "v111": [], - "vendored": [ - "ffi/vendored" - ] - }, - "homepage": null, - "id": "openssl 0.10.52 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "tls", - "ssl", - "dtls" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/Cargo.toml", - "metadata": null, - "name": "openssl", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "openssl", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "mk_certs", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/examples/mk_certs.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.52/build.rs", - "test": false - } - ], - "version": "0.10.52" - }, - { - "authors": [], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": null, - "name": "syn", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Internal macros used by the openssl crate.", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "openssl-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-macros-0.1.1/Cargo.toml", - "metadata": null, - "name": "openssl-macros", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "openssl-macros", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-macros-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Tool for helping to find SSL certificate locations on the system for OpenSSL\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/openssl-probe", - "id": "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/Cargo.toml", - "metadata": null, - "name": "openssl-probe", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/openssl-probe", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "openssl-probe", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "probe", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/examples/probe.rs", - "test": false - } - ], - "version": "0.1.5" - }, - { - "authors": [ - "Alex Crichton ", - "Steven Fackler " - ], - "categories": [ - "cryptography", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bssl-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "experimental" - ], - "kind": "build", - "name": "bindgen", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "openssl-src", - "optional": true, - "registry": null, - "rename": null, - "req": "^111", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "pkg-config", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "vcpkg", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_env = \"msvc\")", - "uses_default_features": true - } - ], - "description": "FFI bindings to OpenSSL", - "documentation": null, - "edition": "2018", - "features": { - "bindgen": [ - "dep:bindgen" - ], - "bssl-sys": [ - "dep:bssl-sys" - ], - "openssl-src": [ - "dep:openssl-src" - ], - "unstable_boringssl": [ - "bssl-sys" - ], - "vendored": [ - "openssl-src" - ] - }, - "homepage": null, - "id": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": "openssl", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/Cargo.toml", - "metadata": { - "pkg-config": { - "openssl": "1.0.1" - } - }, - "name": "openssl-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/rust-openssl", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "openssl-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-main", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.87/build/main.rs", - "test": false - } - ], - "version": "0.9.87" - }, - { - "authors": [ - "Jonathan Reem ", - "Matt Brubeck " - ], - "categories": [ - "science", - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "num-traits", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "proptest", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "size_32" - ], - "kind": null, - "name": "rkyv", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "schemars", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Wrappers for total ordering on floats", - "documentation": null, - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "default": [ - "std" - ], - "proptest": [ - "dep:proptest" - ], - "rand": [ - "dep:rand" - ], - "randtest": [ - "rand/std", - "rand/std_rng" - ], - "rkyv": [ - "dep:rkyv" - ], - "schemars": [ - "dep:schemars" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "num-traits/std" - ] - }, - "homepage": null, - "id": "ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "no_std", - "ord", - "f64", - "f32", - "sort" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/Cargo.toml", - "metadata": null, - "name": "ordered-float", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/reem/rust-ordered-float", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ordered-float", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/tests/test.rs", - "test": true - } - ], - "version": "2.10.0" - }, - { - "authors": [ - "brycx " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ct-codecs", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "fiat-crypto", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "getrandom", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.124", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck_macros", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Usable, easy and safe pure-Rust crypto", - "documentation": "https://docs.rs/orion", - "edition": "2021", - "features": { - "alloc": [], - "ct-codecs": [ - "dep:ct-codecs" - ], - "default": [ - "safe_api" - ], - "getrandom": [ - "dep:getrandom" - ], - "safe_api": [ - "getrandom", - "ct-codecs" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "orion 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "aead", - "hash", - "mac" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "orion", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/orion-rs/orion", - "rust_version": "1.59", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "orion", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/orion-0.17.4/benches/bench.rs", - "test": false - } - ], - "version": "0.17.4" - }, - { - "authors": [ - "Jan Schulte ", - "Stanislav Tkach " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "pretty_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "minwindef", - "ntdef", - "ntstatus", - "sysinfoapi", - "winnt", - "winuser", - "libloaderapi", - "processthreadsapi", - "winerror", - "winreg" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Detect the operating system type and version.", - "documentation": "https://docs.rs/os_info", - "edition": "2018", - "features": { - "default": [ - "serde" - ], - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/stanislav-tkach/os_info", - "id": "os_info 3.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "os", - "os_type", - "os_version", - "os_info" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/Cargo.toml", - "metadata": null, - "name": "os_info", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/stanislav-tkach/os_info", - "rust_version": "1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "os_info", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "print_version", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/examples/print_version.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/tests/basic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "md_doc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_info-3.7.0/tests/md_doc.rs", - "test": true - } - ], - "version": "3.7.0" - }, - { - "authors": [ - "RustCrypto Developers", - "Frank Denis " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "der" - ], - "kind": null, - "name": "ecdsa", - "optional": true, - "registry": null, - "rename": "ecdsa-core", - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "hazmat", - "sec1" - ], - "kind": null, - "name": "elliptic-curve", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "hex-literal", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "primeorder", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serdect", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "sha2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "blobby", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "ecdsa", - "optional": false, - "registry": null, - "rename": "ecdsa-core", - "req": "^0.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "getrandom" - ], - "kind": "dev", - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of the NIST P-384 (a.k.a. secp384r1) elliptic curve\nas defined in SP 800-186 with support for ECDH, ECDSA signing/verification,\nand general purpose curve arithmetic support.\n", - "documentation": "https://docs.rs/p384", - "edition": "2021", - "features": { - "alloc": [ - "ecdsa-core?/alloc", - "elliptic-curve/alloc" - ], - "arithmetic": [ - "elliptic-curve/arithmetic", - "elliptic-curve/digest" - ], - "bits": [ - "arithmetic", - "elliptic-curve/bits" - ], - "default": [ - "arithmetic", - "ecdh", - "ecdsa", - "pem", - "std" - ], - "digest": [ - "ecdsa-core/digest", - "ecdsa-core/hazmat" - ], - "ecdh": [ - "arithmetic", - "elliptic-curve/ecdh" - ], - "ecdsa": [ - "arithmetic", - "ecdsa-core/signing", - "ecdsa-core/verifying", - "sha384" - ], - "ecdsa-core": [ - "dep:ecdsa-core" - ], - "expose-field": [ - "arithmetic" - ], - "hash2curve": [ - "arithmetic", - "elliptic-curve/hash2curve" - ], - "hex-literal": [ - "dep:hex-literal" - ], - "jwk": [ - "elliptic-curve/jwk" - ], - "pem": [ - "elliptic-curve/pem", - "ecdsa-core/pem", - "pkcs8" - ], - "pkcs8": [ - "ecdsa-core/pkcs8", - "elliptic-curve/pkcs8" - ], - "serde": [ - "ecdsa-core/serde", - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "sha2": [ - "dep:sha2" - ], - "sha384": [ - "digest", - "sha2" - ], - "std": [ - "alloc", - "ecdsa-core?/std", - "elliptic-curve/std" - ], - "test-vectors": [ - "hex-literal" - ], - "voprf": [ - "elliptic-curve/voprf", - "sha2" - ] - }, - "homepage": null, - "id": "p384 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc", - "nist", - "secp384r1" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "p384", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/elliptic-curves/tree/master/p384", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "p384", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "projective", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/tests/projective.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "affine", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/tests/affine.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "field", - "required-features": [ - "expose-field" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/benches/field.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "scalar", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/p384-0.13.0/benches/scalar.rs", - "test": false - } - ], - "version": "0.13.0" - }, - { - "authors": [ - "brycx " - ], - "categories": [ - "cryptography", - "authentication" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ct-codecs", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "random" - ], - "kind": null, - "name": "ed25519-compact", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "js" - ], - "kind": null, - "name": "getrandom", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "orion", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.17.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "p384", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.13.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "getrandom" - ], - "kind": null, - "name": "rand_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "regex", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.5.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sha2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "parsing", - "formatting" - ], - "kind": null, - "name": "time", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "PASETO: Platform-Agnostic Security Tokens (in Rust)", - "documentation": "https://docs.rs/pasetors", - "edition": "2018", - "features": { - "default": [ - "std", - "v4", - "paserk" - ], - "ed25519-compact": [ - "dep:ed25519-compact" - ], - "orion": [ - "dep:orion" - ], - "p384": [ - "dep:p384" - ], - "paserk": [ - "orion" - ], - "rand_core": [ - "dep:rand_core" - ], - "regex": [ - "dep:regex" - ], - "serde": [ - "dep:serde" - ], - "serde_json": [ - "dep:serde_json" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "serde_json", - "time", - "regex" - ], - "time": [ - "dep:time" - ], - "v2": [ - "orion", - "ed25519-compact" - ], - "v3": [ - "rand_core", - "p384", - "sha2" - ], - "v4": [ - "orion", - "ed25519-compact" - ] - }, - "homepage": null, - "id": "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "token", - "paseto", - "authentication" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pasetors-0.6.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pasetors", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/brycx/pasetors", - "rust_version": "1.65.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "pasetors", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pasetors-0.6.6/src/lib.rs", - "test": true - } - ], - "version": "0.6.6" - }, - { - "authors": [ - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "camino", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Library for diffing paths to obtain relative paths", - "documentation": "https://docs.rs/pathdiff/", - "edition": "2018", - "features": { - "camino": [ - "dep:camino" - ] - }, - "homepage": null, - "id": "pathdiff 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "path", - "relative" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pathdiff-0.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "pathdiff", - "publish": null, - "readme": null, - "repository": "https://github.com/Manishearth/pathdiff", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "pathdiff", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pathdiff-0.2.1/src/lib.rs", - "test": true - } - ], - "version": "0.2.1" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "base64ct", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS Structures, implementing a\nstrict subset of the original Privacy-Enhanced Mail encoding intended\nspecifically for use with cryptographic keys, certificates, and other messages.\nProvides a no_std-friendly, constant-time implementation suitable for use with\ncryptographic private keys.\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base64ct/alloc" - ], - "std": [ - "alloc", - "base64ct/std" - ] - }, - "homepage": null, - "id": "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "pem", - "pkcs", - "rsa" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pem-rfc7468", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pem-rfc7468", - "rust_version": "1.60", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "pem-rfc7468", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decode", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/tests/decode.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encode", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pem-rfc7468-0.7.0/tests/encode.rs", - "test": true - } - ], - "version": "0.7.0" - }, - { - "authors": [ - "The rust-url developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Percent encoding and decoding", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "alloc" - ] - }, - "homepage": null, - "id": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/Cargo.toml", - "metadata": null, - "name": "percent-encoding", - "publish": null, - "readme": null, - "repository": "https://github.com/servo/rust-url/", - "rust_version": "1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "percent-encoding", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.2.0/src/lib.rs", - "test": true - } - ], - "version": "2.2.0" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "oid" - ], - "kind": null, - "name": "der", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "pkcs5", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "spki", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": true, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n", - "documentation": null, - "edition": "2021", - "features": { - "3des": [ - "encryption", - "pkcs5/3des" - ], - "alloc": [ - "der/alloc", - "der/zeroize", - "spki/alloc" - ], - "des-insecure": [ - "encryption", - "pkcs5/des-insecure" - ], - "encryption": [ - "alloc", - "pkcs5/alloc", - "pkcs5/pbes2", - "rand_core" - ], - "getrandom": [ - "rand_core/getrandom" - ], - "pem": [ - "alloc", - "der/pem", - "spki/pem" - ], - "pkcs5": [ - "dep:pkcs5" - ], - "rand_core": [ - "dep:rand_core" - ], - "sha1-insecure": [ - "encryption", - "pkcs5/sha1-insecure" - ], - "std": [ - "alloc", - "der/std", - "spki/std" - ], - "subtle": [ - "dep:subtle" - ] - }, - "homepage": null, - "id": "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "pkcs", - "private" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "pkcs8", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/pkcs8", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "pkcs8", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encrypted_private_key", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/encrypted_private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "private_key", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkcs8-0.10.2/tests/traits.rs", - "test": true - } - ], - "version": "0.10.2" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n", - "documentation": "https://docs.rs/pkg-config", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/Cargo.toml", - "metadata": null, - "name": "pkg-config", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/pkg-config-rs", - "rust_version": "1.30", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "pkg-config", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.27/tests/test.rs", - "test": true - } - ], - "version": "0.3.27" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "arithmetic", - "sec1" - ], - "kind": null, - "name": "elliptic-curve", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "serdect", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Pure Rust implementation of complete addition formulas for prime order elliptic\ncurves (Renes-Costello-Batina 2015). Generic over field elements and curve\nequation coefficients\n", - "documentation": "https://docs.rs/primeorder", - "edition": "2021", - "features": { - "dev": [], - "serde": [ - "elliptic-curve/serde", - "serdect" - ], - "serdect": [ - "dep:serdect" - ], - "std": [ - "elliptic-curve/std" - ] - }, - "homepage": null, - "id": "primeorder 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecc" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/primeorder-0.13.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "primeorder", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "primeorder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/primeorder-0.13.1/src/lib.rs", - "test": true - } - ], - "version": "0.13.1" - }, - { - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "unicode-ident", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "documentation": "https://docs.rs/proc-macro2", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "homepage": null, - "id": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "name": "proc-macro2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "proc-macro2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "comments", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/comments.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "marker", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/marker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "features", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/tests/features.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/build.rs", - "test": false - } - ], - "version": "1.0.56" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.52", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.66", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Quasi-quoting macro quote!(...)", - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "homepage": null, - "id": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "quote", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "quote", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/build.rs", - "test": false - } - ], - "version": "1.0.26" - }, - { - "authors": [ - "The Rand Project Developers", - "The Rust Project Developers" - ], - "categories": [ - "algorithms", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "getrandom", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Core random number generator traits and tools for implementation.\n", - "documentation": "https://docs.rs/rand_core", - "edition": "2018", - "features": { - "alloc": [], - "getrandom": [ - "dep:getrandom" - ], - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ], - "std": [ - "alloc", - "getrandom", - "getrandom/std" - ] - }, - "homepage": "https://rust-random.github.io/book", - "id": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "random", - "rng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ] - } - }, - "playground": { - "all-features": true - } - }, - "name": "rand_core", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/rand", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rand_core", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs", - "test": true - } - ], - "version": "0.6.4" - }, - { - "authors": [ - "The Rand Project Developers" - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bincode", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Xoshiro, xoroshiro and splitmix64 random number generators", - "documentation": "https://docs.rs/rand_xoshiro", - "edition": "2018", - "features": { - "serde": [ - "dep:serde" - ], - "serde1": [ - "serde" - ] - }, - "homepage": "https://rust-random.github.io/book", - "id": "rand_xoshiro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "random", - "rng" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/Cargo.toml", - "metadata": null, - "name": "rand_xoshiro", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-random/rngs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rand_xoshiro", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.6.0/tests/serde.rs", - "test": true - } - ], - "version": "0.6.0" - }, - { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml", - "metadata": null, - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs", - "test": true - } - ], - "version": "0.2.16" - }, - { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": { - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "bitflags/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "redox_syscall 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.3.5/Cargo.toml", - "metadata": null, - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.3.5/src/lib.rs", - "test": true - } - ], - "version": "0.3.5" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "aho-corasick", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "memchr", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "regex-syntax", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "getrandom", - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n", - "documentation": "https://docs.rs/regex", - "edition": "2021", - "features": { - "aho-corasick": [ - "dep:aho-corasick" - ], - "default": [ - "std", - "perf", - "unicode", - "regex-syntax/default" - ], - "memchr": [ - "dep:memchr" - ], - "pattern": [], - "perf": [ - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal" - ], - "perf-cache": [], - "perf-dfa": [], - "perf-inline": [], - "perf-literal": [ - "aho-corasick", - "memchr" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment", - "regex-syntax/unicode" - ], - "unicode-age": [ - "regex-syntax/unicode-age" - ], - "unicode-bool": [ - "regex-syntax/unicode-bool" - ], - "unicode-case": [ - "regex-syntax/unicode-case" - ], - "unicode-gencat": [ - "regex-syntax/unicode-gencat" - ], - "unicode-perl": [ - "regex-syntax/unicode-perl" - ], - "unicode-script": [ - "regex-syntax/unicode-script" - ], - "unicode-segment": [ - "regex-syntax/unicode-segment" - ], - "unstable": [ - "pattern" - ], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/regex", - "id": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/Cargo.toml", - "metadata": null, - "name": "regex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "regex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-cheat", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-cheat.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-replace", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-replace.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-single-cheat", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-single-cheat.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-single", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-single.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "shootout-regex-dna-bytes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/examples/shootout-regex-dna-bytes.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "default", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_default.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "default-bytes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_default_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa-utf8bytes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa_utf8bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "nfa-bytes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_nfa_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack-utf8bytes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack_utf8bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "backtrack-bytes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_backtrack_bytes.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "crates-regex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.8.1/tests/test_crates_regex.rs", - "test": true - } - ], - "version": "1.8.1" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "fst", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "regex-syntax", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std" - ], - "kind": "dev", - "name": "bstr", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_bytes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.82", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Automata construction and matching using regular expressions.", - "documentation": "https://docs.rs/regex-automata", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "fst": [ - "dep:fst" - ], - "regex-syntax": [ - "dep:regex-syntax" - ], - "std": [ - "regex-syntax" - ], - "transducer": [ - "std", - "fst" - ] - }, - "homepage": "https://github.com/BurntSushi/regex-automata", - "id": "regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "regex", - "dfa", - "automata", - "automaton", - "nfa" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/Cargo.toml", - "metadata": null, - "name": "regex-automata", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/regex-automata", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "regex-automata", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "default", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/tests/tests.rs", - "test": true - } - ], - "version": "0.1.10" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "A regular expression parser.", - "documentation": "https://docs.rs/regex-syntax", - "edition": "2021", - "features": { - "default": [ - "std", - "unicode" - ], - "std": [], - "unicode": [ - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "unicode-age": [], - "unicode-bool": [], - "unicode-case": [], - "unicode-gencat": [], - "unicode-perl": [], - "unicode-script": [], - "unicode-segment": [] - }, - "homepage": "https://github.com/rust-lang/regex", - "id": "regex-syntax 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "regex-syntax", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/regex", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "regex-syntax", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.7.1/benches/bench.rs", - "test": false - } - ], - "version": "0.7.1" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "reset" - ], - "kind": null, - "name": "hmac", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of RFC6979: Deterministic Usage of the\nDigital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)\n", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "rfc6979 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dsa", - "ecdsa", - "signature" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/Cargo.toml", - "metadata": null, - "name": "rfc6979", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/signatures/tree/master/rfc6979", - "rust_version": "1.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "rfc6979", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "lib", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rfc6979-0.4.0/tests/lib.rs", - "test": true - } - ], - "version": "0.4.0" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Hack for the compiler's own build system\n", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "rustc-workspace-hack 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-workspace-hack-1.0.0/Cargo.toml", - "metadata": null, - "name": "rustc-workspace-hack", - "publish": null, - "readme": null, - "repository": null, - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "rustc-workspace-hack", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-workspace-hack-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - { - "authors": [ - "Pascal Hertleif ", - "Oliver Schneider " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "duct", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "env_logger", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5.0-rc.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "similar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Automatically apply the suggestions made by rustc", - "documentation": "https://docs.rs/rustfix", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rustfix 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustfix-0.6.1/Cargo.toml", - "metadata": null, - "name": "rustfix", - "publish": null, - "readme": "Readme.md", - "repository": "https://github.com/rust-lang-nursery/rustfix", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustfix", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustfix-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - { - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": null, - "name": "io-lifetimes", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "itoa", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "dev", - "name": "io-lifetimes", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "errno", - "optional": false, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "memoffset", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serial_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "general", - "ioctl", - "no_std" - ], - "kind": null, - "name": "linux-raw-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [ - "extra_traits" - ], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "errno", - "optional": true, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "general", - "errno", - "ioctl", - "no_std" - ], - "kind": null, - "name": "linux-raw-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "extra_traits" - ], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.142", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "errno", - "optional": false, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "errno", - "optional": false, - "registry": null, - "rename": "libc_errno", - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": false - }, - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ctor", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls", - "documentation": "https://docs.rs/rustix", - "edition": "2018", - "features": { - "all-apis": [ - "fs", - "io_uring", - "mm", - "net", - "param", - "process", - "procfs", - "rand", - "runtime", - "termios", - "thread", - "time" - ], - "all-impls": [ - "os_pipe", - "fs-err" - ], - "alloc": [ - "dep:alloc" - ], - "cc": [ - "dep:cc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "fs": [], - "fs-err": [ - "io-lifetimes/fs-err" - ], - "io-lifetimes": [ - "dep:io-lifetimes" - ], - "io_uring": [ - "fs", - "net" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "linux_4_11": [], - "linux_latest": [ - "linux_4_11" - ], - "mm": [], - "net": [], - "once_cell": [ - "dep:once_cell" - ], - "os_pipe": [ - "io-lifetimes/os_pipe" - ], - "param": [ - "fs" - ], - "process": [], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "rand": [], - "runtime": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std" - ], - "std": [ - "io-lifetimes" - ], - "termios": [], - "thread": [], - "time": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [ - "libc" - ] - }, - "homepage": null, - "id": "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-freebsd", - "x86_64-unknown-openbsd", - "x86_64-unknown-netbsd", - "x86_64-unknown-dragonfly", - "x86_64-unknown-illumos", - "x86_64-unknown-redox", - "x86_64-unknown-haiku", - "wasm32-unknown-emscripten", - "wasm32-wasi" - ] - } - } - }, - "name": "rustix", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustix", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/benches/mod.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.37.19/build.rs", - "test": false - } - ], - "version": "0.37.19" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "value-formatting", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "no-panic", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast floating point to string conversion", - "documentation": "https://docs.rs/ryu", - "edition": "2018", - "features": { - "no-panic": [ - "dep:no-panic" - ], - "small": [] - }, - "homepage": null, - "id": "ryu 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "float" - ], - "license": "Apache-2.0 OR BSL-1.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "ryu", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/ryu", - "rust_version": "1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "ryu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "upstream_benchmark", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/examples/upstream_benchmark.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "d2s_test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/d2s_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "d2s_table_test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/d2s_table_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "s2d_test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/s2d_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "s2f_test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/s2f_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "f2s_test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/f2s_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "exhaustive", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/exhaustive.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "common_test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/tests/common_test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.13/benches/bench.rs", - "test": false - } - ], - "version": "1.0.13" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-util", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/same-file", - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml", - "metadata": null, - "name": "same-file", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "same-file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_same_file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_same_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_stderr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_stderr.rs", - "test": false - } - ], - "version": "1.0.6" - }, - { - "authors": [ - "Steven Fackler ", - "Steffen Butzer " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_Foundation", - "Win32_Security_Cryptography", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_System_Memory" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_SystemInformation", - "Win32_System_Time" - ], - "kind": "dev", - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl", - "documentation": "https://docs.rs/schannel/0.1.19/schannel/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "schannel 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "schannel", - "tls", - "ssl", - "https" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/schannel-0.1.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc" - } - } - }, - "name": "schannel", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/steffengy/schannel-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "schannel", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/schannel-0.1.21/src/lib.rs", - "test": true - } - ], - "version": "0.1.21" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "base16ct", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": null, - "name": "der", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "generic-array", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.14.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "pkcs8", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "alloc" - ], - "kind": null, - "name": "serdect", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "subtle", - "optional": true, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "zeroize", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats\nincluding ASN.1 DER-serialized private keys as well as the\nElliptic-Curve-Point-to-Octet-String encoding\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "der?/alloc", - "pkcs8?/alloc", - "zeroize?/alloc" - ], - "default": [ - "der", - "point" - ], - "der": [ - "dep:der", - "zeroize" - ], - "pem": [ - "alloc", - "der/pem", - "pkcs8/pem" - ], - "pkcs8": [ - "dep:pkcs8" - ], - "point": [ - "dep:base16ct", - "dep:generic-array" - ], - "serde": [ - "dep:serdect" - ], - "std": [ - "alloc", - "der?/std" - ], - "subtle": [ - "dep:subtle" - ], - "zeroize": [ - "dep:zeroize", - "der?/zeroize" - ] - }, - "homepage": null, - "id": "sec1 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "key", - "elliptic-curve", - "secg" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sec1", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/sec1", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "sec1", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "private_key", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/tests/private_key.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sec1-0.7.2/tests/traits.rs", - "test": true - } - ], - "version": "0.7.2" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Parser and evaluator for Cargo's flavor of Semantic Versioning", - "documentation": "https://docs.rs/semver", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "std": [] - }, - "homepage": null, - "id": "semver 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cargo" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "semver", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/semver", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "semver", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_version_req", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_version_req.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_identifier", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_identifier.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_version", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_version.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_autotrait", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/tests/test_autotrait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/benches/parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.17/build.rs", - "test": false - } - ], - "version": "1.0.17" - }, - { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde_derive", - "optional": true, - "registry": null, - "rename": null, - "req": "=1.0.162", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A generic serialization/deserialization framework", - "documentation": "https://docs.rs/serde", - "edition": "2015", - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "homepage": "https://serde.rs", - "id": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "derive" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "name": "serde", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "1.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.162/build.rs", - "test": false - } - ], - "version": "1.0.162" - }, - { - "authors": [ - "arcnmx" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ordered-float", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Serialization value trees", - "documentation": "https://docs.rs/serde-value/*/serde_value/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-value-0.7.0/Cargo.toml", - "metadata": null, - "name": "serde-value", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/arcnmx/serde-value", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde-value", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-value-0.7.0/src/lib.rs", - "test": true - } - ], - "version": "0.7.0" - }, - { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "syn", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "features": { - "default": [], - "deserialize_in_place": [] - }, - "homepage": "https://serde.rs", - "id": "serde_derive 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_derive", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "proc-macro" - ], - "name": "serde_derive", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.162/build.rs", - "test": false - } - ], - "version": "1.0.162" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "alloc" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Find out about keys that are ignored when deserializing data", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "serde_ignored 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_ignored", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/serde-ignored", - "rust_version": "1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde_ignored", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_ignored-0.1.7/tests/test.rs", - "test": true - } - ], - "version": "0.1.7" - }, - { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "parser-implementations", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std" - ], - "kind": null, - "name": "indexmap", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "itoa", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "ryu", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "indoc", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_bytes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_stacker", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A JSON serialization file format", - "documentation": "https://docs.rs/serde_json", - "edition": "2018", - "features": { - "alloc": [ - "serde/alloc" - ], - "arbitrary_precision": [], - "default": [ - "std" - ], - "float_roundtrip": [], - "indexmap": [ - "dep:indexmap" - ], - "preserve_order": [ - "indexmap", - "std" - ], - "raw_value": [], - "std": [ - "serde/std" - ], - "unbounded_depth": [] - }, - "homepage": null, - "id": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "json", - "serde", - "serialization" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "raw_value", - "unbounded_depth" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "raw_value" - ] - } - }, - "name": "serde_json", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/serde-rs/json", - "rust_version": "1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "serde_json", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "lexical", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/lexical.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "stream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debug", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/debug.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "map", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/tests/map.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.96/build.rs", - "test": false - } - ], - "version": "1.0.96" - }, - { - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/serde_spanned", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "span" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "serde_spanned", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "serde_spanned", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "digest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cpufeatures", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sha1-asm", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))", - "uses_default_features": true - } - ], - "description": "SHA-1 hash function", - "documentation": "https://docs.rs/sha1", - "edition": "2018", - "features": { - "asm": [ - "sha1-asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "oid": [ - "digest/oid" - ], - "sha1-asm": [ - "dep:sha1-asm" - ], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "sha1 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "sha1", - "hash", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sha1", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sha1", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/tests/mod.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha1-0.10.5/benches/mod.rs", - "test": false - } - ], - "version": "0.10.5" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "digest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "dev" - ], - "kind": "dev", - "name": "digest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "cpufeatures", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sha2-asm", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))", - "uses_default_features": true - } - ], - "description": "Pure Rust implementation of the SHA-2 hash function family\nincluding SHA-224, SHA-256, SHA-384, and SHA-512.\n", - "documentation": "https://docs.rs/sha2", - "edition": "2018", - "features": { - "asm": [ - "sha2-asm" - ], - "asm-aarch64": [ - "asm" - ], - "compress": [], - "default": [ - "std" - ], - "force-soft": [], - "oid": [ - "digest/oid" - ], - "sha2-asm": [ - "dep:sha2-asm" - ], - "std": [ - "digest/std" - ] - }, - "homepage": null, - "id": "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "sha2", - "hash", - "digest" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "sha2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/hashes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sha2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/tests/mod.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sha2-0.10.6/benches/mod.rs", - "test": false - } - ], - "version": "0.10.6" - }, - { - "authors": [ - "Steven Fackler " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Escape characters that may have a special meaning in a shell", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shell-escape-0.1.5/Cargo.toml", - "metadata": null, - "name": "shell-escape", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sfackler/shell-escape", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "shell-escape", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shell-escape-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "signature_derive", - "optional": true, - "registry": null, - "rename": "derive", - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "digest", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rand_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "sha2", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", - "documentation": "https://docs.rs/signature", - "edition": "2021", - "features": { - "alloc": [], - "derive": [ - "dep:derive" - ], - "digest": [ - "dep:digest" - ], - "rand_core": [ - "dep:rand_core" - ], - "std": [ - "alloc" - ] - }, - "homepage": null, - "id": "signature 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "ecdsa", - "ed25519", - "signature", - "signing" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "signature", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/traits/tree/master/signature", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "signature", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "derive", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/signature-2.1.0/tests/derive.rs", - "test": true - } - ], - "version": "2.1.0" - }, - { - "authors": [ - "Armin Ronacher ", - "Pierre-Étienne Meunier ", - "Brandon Williams " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bstr", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.130", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicode-segmentation", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "console", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.15.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A diff library for Rust", - "documentation": null, - "edition": "2018", - "features": { - "bstr": [ - "dep:bstr" - ], - "bytes": [ - "bstr", - "text" - ], - "default": [ - "text" - ], - "inline": [ - "text" - ], - "serde": [ - "dep:serde" - ], - "text": [], - "unicode": [ - "text", - "unicode-segmentation", - "bstr/unicode" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ] - }, - "homepage": null, - "id": "similar 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "diff", - "difference", - "patience", - "compare", - "changes" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "similar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/similar", - "rust_version": "1.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "similar", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "patience", - "required-features": [ - "text", - "inline" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/patience.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/terminal.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal-inline", - "required-features": [ - "text", - "inline", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/terminal-inline.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "original-slices", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/original-slices.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "udiff", - "required-features": [ - "text", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/udiff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "close-matches", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/close-matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "large", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/large.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "serde", - "required-features": [ - "text", - "serde" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/serde.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "nonstring", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.1/examples/nonstring.rs", - "test": false - } - ], - "version": "2.2.1" - }, - { - "authors": [ - "Bodil Stokke " - ], - "categories": [ - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "array-ops", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bitmaps", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "refpool", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "typenum", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Efficient sized chunk datatypes", - "documentation": "http://docs.rs/sized-chunks", - "edition": "2018", - "features": { - "arbitrary": [ - "dep:arbitrary" - ], - "array-ops": [ - "dep:array-ops" - ], - "default": [ - "std" - ], - "refpool": [ - "dep:refpool" - ], - "ringbuffer": [ - "array-ops" - ], - "std": [] - }, - "homepage": null, - "id": "sized-chunks 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "sparse-array" - ], - "license": "MPL-2.0+", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sized-chunks-0.6.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "sized-chunks", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/bodil/sized-chunks", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "sized-chunks", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sized-chunks-0.6.5/src/lib.rs", - "test": true - } - ], - "version": "0.6.5" - }, - { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "backtrace", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "content_inspector", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "document-features", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "dunce", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "escargot", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "filetime", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "ignore", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libtest-mimic", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "normalize-line-endings", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "os_pipe", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "inline" - ], - "kind": null, - "name": "similar", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "snapbox-macros", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "tempfile", - "optional": true, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wait-timeout", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "walkdir", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.137", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "cmd": [ - "dep:os_pipe", - "dep:wait-timeout", - "dep:libc", - "dep:windows-sys" - ], - "color": [ - "dep:anstream", - "snapbox-macros/color" - ], - "color-auto": [ - "color" - ], - "debug": [ - "snapbox-macros/debug", - "dep:backtrace" - ], - "default": [ - "color-auto", - "diff" - ], - "detect-encoding": [ - "dep:content_inspector" - ], - "diff": [ - "dep:similar" - ], - "document-features": [ - "dep:document-features" - ], - "examples": [ - "dep:escargot" - ], - "harness": [ - "dep:libtest-mimic", - "dep:ignore" - ], - "json": [ - "structured-data", - "dep:serde_json" - ], - "path": [ - "dep:tempfile", - "dep:walkdir", - "dep:dunce", - "detect-encoding", - "dep:filetime" - ], - "structured-data": [ - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "snapbox", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "snap-fixture", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/src/bin/snap-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "snap-example-fixture", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-0.4.11/examples/snap-example-fixture.rs", - "test": false - } - ], - "version": "0.4.11" - }, - { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "color": [ - "dep:anstream" - ], - "debug": [], - "default": [] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox-macros 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-macros-0.3.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "snapbox-macros", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox-macros", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/snapbox-macros-0.3.4/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - { - "authors": [ - "Alex Crichton ", - "Thomas de Zeeuw " - ], - "categories": [ - "api-bindings", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.139", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "handleapi", - "ws2ipdef", - "ws2tcpip" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Utilities for handling networking sockets with a maximal amount of configuration\npossible intended.\n", - "documentation": "https://docs.rs/socket2", - "edition": "2018", - "features": { - "all": [] - }, - "homepage": "https://github.com/rust-lang/socket2", - "id": "socket2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "io", - "socket", - "network" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "playground": { - "features": [ - "all" - ] - } - }, - "name": "socket2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/socket2", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "socket2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.9/src/lib.rs", - "test": true - } - ], - "version": "0.4.9" - }, - { - "authors": [ - "RustCrypto Developers" - ], - "categories": [ - "cryptography", - "data-structures", - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "base64ct", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "oid" - ], - "kind": null, - "name": "der", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "sha2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "hex-literal", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "X.509 Subject Public Key Info (RFC5280) describing public keys as well as their\nassociated AlgorithmIdentifiers (i.e. OIDs)\n", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "base64ct?/alloc", - "der/alloc" - ], - "arbitrary": [ - "std", - "dep:arbitrary", - "der/arbitrary" - ], - "base64": [ - "dep:base64ct" - ], - "fingerprint": [ - "sha2" - ], - "pem": [ - "alloc", - "der/pem" - ], - "sha2": [ - "dep:sha2" - ], - "std": [ - "der/std", - "alloc" - ] - }, - "homepage": null, - "id": "spki 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "crypto", - "x509" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "spki", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/formats/tree/master/spki", - "rust_version": "1.65", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "spki", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "spki", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/tests/spki.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "traits", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/spki-0.7.2/tests/traits.rs", - "test": true - } - ], - "version": "0.7.2" - }, - { - "authors": [ - "Ted Mielczarek " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "vte", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Strip ANSI escape sequences from byte streams.", - "documentation": "https://docs.rs/strip-ansi-escapes", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/luser/strip-ansi-escapes", - "id": "strip-ansi-escapes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "escape", - "terminal" - ], - "license": "Apache-2.0/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/Cargo.toml", - "metadata": null, - "name": "strip-ansi-escapes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/luser/strip-ansi-escapes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "strip-ansi-escapes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "strip-escapes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strip-ansi-escapes-0.1.1/examples/strip-escapes.rs", - "test": false - } - ], - "version": "0.1.1" - }, - { - "authors": [ - "Danny Guo " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein,\nOSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.\n", - "documentation": "https://docs.rs/strsim/", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/dguo/strsim-rs", - "id": "strsim 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "string", - "similarity", - "Hamming", - "Levenshtein", - "Jaro" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/Cargo.toml", - "metadata": null, - "name": "strsim", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dguo/strsim-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "strsim", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "lib", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/tests/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "benches", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.10.0/benches/benches.rs", - "test": false - } - ], - "version": "0.10.0" - }, - { - "authors": [ - "Isis Lovecruft ", - "Henry de Valence " - ], - "categories": [ - "cryptography", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.", - "documentation": "https://docs.rs/subtle", - "edition": "2015", - "features": { - "default": [ - "std", - "i128" - ], - "i128": [], - "nightly": [], - "std": [] - }, - "homepage": "https://dalek.rs/", - "id": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cryptography", - "crypto", - "constant-time", - "utilities" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/Cargo.toml", - "metadata": null, - "name": "subtle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dalek-cryptography/subtle", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "subtle", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/tests/mod.rs", - "test": true - } - ], - "version": "2.4.1" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.46", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "unicode-ident", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2018", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syn", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_should_parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_expr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_asyncness", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_grouping", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_path", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_pat", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_round_trip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_visibility", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_iterators", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_meta", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_item", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_shebang", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_stmt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_derive_input", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ident", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_generics", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_attribute", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_lit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_precedence", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zzz_stable", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ty", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_receiver", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_token_trees", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/benches/file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.109/build.rs", - "test": false - } - ], - "version": "1.0.109" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.55", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "unicode-ident", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2021", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "syn", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_should_parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_expr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_asyncness", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_grouping", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_path", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_pat", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_round_trip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_visibility", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_iterators", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_meta", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_item", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_shebang", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_stmt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_derive_input", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_ident", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_size", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_generics", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_attribute", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_lit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "regression", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_precedence", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zzz_stable", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_ty", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_receiver", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "test_token_trees", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/benches/file.rs", - "test": false - } - ], - "version": "2.0.15" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "filetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "xattr", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "A Rust implementation of a TAR file reader and writer. This library does not\ncurrently handle compression, but it is abstract over all I/O readers and\nwriters. Additionally, great lengths are taken to ensure that the entire\ncontents are never required to be entirely resident in memory all at once.\n", - "documentation": "https://docs.rs/tar", - "edition": "2018", - "features": { - "default": [ - "xattr" - ], - "xattr": [ - "dep:xattr" - ] - }, - "homepage": "https://github.com/alexcrichton/tar-rs", - "id": "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tar", - "tarfile", - "encoding" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/Cargo.toml", - "metadata": null, - "name": "tar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/tar-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tar", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "write", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/write.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "raw_list", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/raw_list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "list", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/list.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "extract_file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/examples/extract_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "all", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/tests/all.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "entry", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tar-0.4.38/tests/entry.rs", - "test": true - } - ], - "version": "0.4.38" - }, - { - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "fastrand", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "fs" - ], - "kind": null, - "name": "rustix", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.37.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "redox_syscall", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Storage_FileSystem", - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.45", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A library for managing temporary files and directories.", - "documentation": "https://docs.rs/tempfile", - "edition": "2018", - "features": { - "nightly": [] - }, - "homepage": "https://stebalien.com/projects/tempfile-rs/", - "id": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/Cargo.toml", - "metadata": null, - "name": "tempfile", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tempfile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "namedtempfile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/namedtempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempfile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/tempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "spooled", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/spooled.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempdir", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.5.0/tests/tempdir.rs", - "test": true - } - ], - "version": "3.5.0" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "winapi-util", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.\n", - "documentation": "https://docs.rs/termcolor", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/termcolor", - "id": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "win", - "color", - "ansi", - "console" - ], - "license": "Unlicense OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.2.0/Cargo.toml", - "metadata": null, - "name": "termcolor", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/termcolor", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "termcolor", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.2.0/src/lib.rs", - "test": true - } - ], - "version": "1.2.0" - }, - { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Per-object thread-local storage", - "documentation": "https://docs.rs/thread_local/", - "edition": "2021", - "features": { - "nightly": [] - }, - "homepage": null, - "id": "thread_local 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "thread_local", - "concurrent", - "thread" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/Cargo.toml", - "metadata": null, - "name": "thread_local", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Amanieu/thread_local-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "thread_local", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "thread_local", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.7/benches/thread_local.rs", - "test": false - } - ], - "version": "1.1.7" - }, - { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time", - "no-std", - "parser-implementations", - "value-formatting" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "itoa", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quickcheck", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rand", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "time-core", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "time-macros", - "optional": true, - "registry": null, - "rename": null, - "req": "=0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck_macros", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.126", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time-macros", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(__ui_tests)", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.58", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_family = \"wasm\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(bench)", - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.98", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_family = \"unix\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "num_threads", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_family = \"unix\")", - "uses_default_features": true - } - ], - "description": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "serde?/alloc" - ], - "default": [ - "std" - ], - "formatting": [ - "dep:itoa", - "std", - "time-macros?/formatting" - ], - "large-dates": [ - "time-macros?/large-dates" - ], - "local-offset": [ - "std", - "dep:libc", - "dep:num_threads" - ], - "macros": [ - "dep:time-macros" - ], - "parsing": [ - "time-macros?/parsing" - ], - "quickcheck": [ - "dep:quickcheck", - "alloc" - ], - "rand": [ - "dep:rand" - ], - "serde": [ - "dep:serde", - "time-macros?/serde" - ], - "serde-human-readable": [ - "serde", - "formatting", - "parsing" - ], - "serde-well-known": [ - "serde", - "formatting", - "parsing" - ], - "std": [ - "alloc" - ], - "wasm-bindgen": [ - "dep:js-sys" - ] - }, - "homepage": "https://time-rs.github.io", - "id": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "__time_03_docs" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "time", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/time-rs/time", - "rust_version": "1.63.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "time", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/../tests/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "benchmarks", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.20/../benchmarks/main.rs", - "test": false - } - ], - "version": "0.3.20" - }, - { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [], - "description": "This crate is an implementation detail and should not be relied upon directly.", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/Cargo.toml", - "metadata": null, - "name": "time-core", - "publish": null, - "readme": null, - "repository": "https://github.com/time-rs/time", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "time-core", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-core-0.1.0/src/lib.rs", - "test": true - } - ], - "version": "0.1.0" - }, - { - "authors": [ - "Jacob Pratt ", - "Time contributors" - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "time-core", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " Procedural macros for the time crate.\n This crate is an implementation detail and should not be relied upon directly.\n", - "documentation": null, - "edition": "2021", - "features": { - "formatting": [], - "large-dates": [], - "parsing": [], - "serde": [] - }, - "homepage": null, - "id": "time-macros 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "date", - "time", - "calendar", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.8/Cargo.toml", - "metadata": null, - "name": "time-macros", - "publish": null, - "readme": null, - "repository": "https://github.com/time-rs/time", - "rust_version": "1.63.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "proc-macro" - ], - "name": "time-macros", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/time-macros-0.2.8/src/lib.rs", - "test": true - } - ], - "version": "0.2.8" - }, - { - "authors": [ - "Lokathor " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arbitrary", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "tinyvec_macros", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "smallvec", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "`tinyvec` provides 100% safe vec-like data structures.", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [ - "tinyvec_macros" - ], - "arbitrary": [ - "dep:arbitrary" - ], - "default": [], - "experimental_write_impl": [], - "grab_spare_slice": [], - "nightly_slice_partition_dedup": [], - "real_blackbox": [ - "criterion/real_blackbox" - ], - "rustc_1_40": [], - "rustc_1_55": [ - "rustc_1_40" - ], - "rustc_1_57": [ - "rustc_1_55" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "tinyvec_macros": [ - "dep:tinyvec_macros" - ] - }, - "homepage": null, - "id": "tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "vec", - "no_std", - "no-std" - ], - "license": "Zlib OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "rustc_1_40", - "rustc_1_55", - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docs_rs" - ] - } - }, - "playground": { - "features": [ - "alloc", - "std", - "grab_spare_slice", - "rustc_1_40", - "rustc_1_55", - "serde" - ] - } - }, - "name": "tinyvec", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Lokathor/tinyvec", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tinyvec", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tinyvec", - "required-features": [ - "alloc", - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/tinyvec.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arrayvec", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/tests/arrayvec.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "macros", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/macros.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "smallvec", - "required-features": [ - "alloc", - "real_blackbox" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.6.0/benches/smallvec.rs", - "test": false - } - ], - "version": "1.6.0" - }, - { - "authors": [ - "Soveu " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Some macros for tiny containers", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "tinyvec_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0 OR Zlib", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.1/Cargo.toml", - "metadata": null, - "name": "tinyvec_macros", - "publish": null, - "readme": null, - "repository": "https://github.com/Soveu/tinyvec_macros", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tinyvec_macros", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "indexmap", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "serde_spanned", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "toml_datetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "toml_edit", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.19.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.152", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.93", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/toml", - "edition": "2021", - "features": { - "default": [ - "parse", - "display" - ], - "display": [ - "dep:toml_edit" - ], - "indexmap": [ - "dep:indexmap" - ], - "parse": [ - "dep:toml_edit" - ], - "preserve_order": [ - "indexmap" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "decode", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/decode.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "enum_external", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/enum_external.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "toml2json", - "required-features": [ - "parse", - "display" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/examples/toml2json.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml-0.7.3/tests/encoder.rs", - "test": true - } - ], - "version": "0.7.3" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A TOML-compatible datetime type", - "documentation": "https://docs.rs/toml_datetime", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml_datetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_datetime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - { - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std" - ], - "kind": null, - "name": "indexmap", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "max_inline" - ], - "kind": null, - "name": "kstring", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "serde_spanned", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "toml_datetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winnow", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libtest-mimic", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.93", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "harness" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-data", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Yet another format-preserving TOML parser.", - "documentation": "https://docs.rs/toml_edit", - "edition": "2021", - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "homepage": null, - "id": "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-name": "v{{version}}" - } - }, - "name": "toml_edit", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/ordian/toml_edit", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_edit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "visit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/examples/visit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "invalid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/invalid.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.8/tests/encoder.rs", - "test": true - } - ], - "version": "0.19.8" - }, - { - "authors": [ - "Paho Lurie-Gregg ", - "Andre Bogus " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "scale-info", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Typenum is a Rust library for type-level numbers evaluated at\n compile time. It currently supports bits, unsigned integers, and signed\n integers. It also provides a type-level array of type-level numbers, but its\n implementation is incomplete.", - "documentation": "https://docs.rs/typenum", - "edition": "2018", - "features": { - "const-generics": [], - "force_unix_path_separator": [], - "i128": [], - "no_std": [], - "scale-info": [ - "dep:scale-info" - ], - "scale_info": [ - "scale-info/derive" - ], - "strict": [] - }, - "homepage": null, - "id": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/Cargo.toml", - "metadata": null, - "name": "typenum", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/paholg/typenum", - "rust_version": "1.37.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "typenum", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-main", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.16.0/build/main.rs", - "test": false - } - ], - "version": "1.16.0" - }, - { - "authors": [ - "The Servo Project Developers" - ], - "categories": [ - "no-std", - "encoding", - "text-processing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "flame", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "flamer", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": ">=0.8, <2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": ">=0.8, <2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Implementation of the Unicode Bidirectional Algorithm", - "documentation": "https://docs.rs/unicode-bidi/", - "edition": "2018", - "features": { - "bench_it": [], - "default": [ - "std", - "hardcoded-data" - ], - "flame": [ - "dep:flame" - ], - "flame_it": [ - "flame", - "flamer" - ], - "flamer": [ - "dep:flamer" - ], - "hardcoded-data": [], - "serde": [ - "dep:serde" - ], - "std": [], - "unstable": [], - "with_serde": [ - "serde" - ] - }, - "homepage": null, - "id": "unicode-bidi 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rtl", - "unicode", - "text", - "layout", - "bidi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/Cargo.toml", - "metadata": null, - "name": "unicode-bidi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/unicode-bidi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode_bidi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "conformance_tests", - "required-features": [ - "hardcoded-data" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.13/tests/conformance_tests.rs", - "test": true - } - ], - "version": "0.3.13" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fst", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "roaring", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ucd-trie", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unicode-xid", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "xid" - ], - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "unicode-ident", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-ident", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "static_size", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/tests/static_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compare", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/tests/compare.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "xid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.8/benches/xid.rs", - "test": false - } - ], - "version": "1.0.8" - }, - { - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [ - "alloc" - ], - "kind": null, - "name": "tinyvec", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "This crate provides functions for normalization of\nUnicode strings, including Canonical and Compatible\nDecomposition and Recomposition, as described in\nUnicode Standard Annex #15.\n", - "documentation": "https://docs.rs/unicode-normalization/", - "edition": "2018", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/unicode-rs/unicode-normalization", - "id": "unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "unicode", - "normalization", - "decomposition", - "recomposition" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/Cargo.toml", - "metadata": null, - "name": "unicode-normalization", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-normalization", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-normalization", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.22/benches/bench.rs", - "test": false - } - ], - "version": "0.1.22" - }, - { - "authors": [ - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-std", - "optional": true, - "registry": null, - "rename": "std", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n", - "documentation": "https://unicode-rs.github.io/unicode-width", - "edition": "2015", - "features": { - "bench": [], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "no_std": [], - "rustc-dep-of-std": [ - "std", - "core", - "compiler_builtins" - ], - "std": [ - "dep:std" - ] - }, - "homepage": "https://github.com/unicode-rs/unicode-width", - "id": "unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "width", - "unicode" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/Cargo.toml", - "metadata": null, - "name": "unicode-width", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-width", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "unicode-width", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.10/src/lib.rs", - "test": true - } - ], - "version": "0.1.10" - }, - { - "authors": [ - "erick.tryzelaar ", - "kwantam ", - "Manish Goregaokar " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start\nor XID_Continue properties according to\nUnicode Standard Annex #31.\n", - "documentation": "https://unicode-rs.github.io/unicode-xid", - "edition": "2015", - "features": { - "bench": [], - "default": [], - "no_std": [] - }, - "homepage": "https://github.com/unicode-rs/unicode-xid", - "id": "unicode-xid 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "text", - "unicode", - "xid" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/Cargo.toml", - "metadata": null, - "name": "unicode-xid", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/unicode-rs/unicode-xid", - "rust_version": "1.17", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "unicode-xid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "exhaustive_tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/tests/exhaustive_tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "bench" - ], - "name": "xid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.4/benches/xid.rs", - "test": false - } - ], - "version": "0.2.4" - }, - { - "authors": [ - "The rust-url developers" - ], - "categories": [ - "parser-implementations", - "web-programming", - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "form_urlencoded", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "idna", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "percent-encoding", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "bencher", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "debugger_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "debugger_test_parser", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "URL library for Rust, based on the WHATWG URL Standard", - "documentation": "https://docs.rs/url", - "edition": "2018", - "features": { - "debugger_visualizer": [], - "default": [], - "expose_internals": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "url", - "parser" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/Cargo.toml", - "metadata": null, - "name": "url", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/servo/rust-url", - "rust_version": "1.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "url", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debugger_visualizer", - "required-features": [ - "debugger_visualizer" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/debugger_visualizer.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/unit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "data", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/tests/data.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "parse_url", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.3.1/benches/parse_url.rs", - "test": false - } - ], - "version": "2.3.1" - }, - { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "Table-driven UTF-8 parser", - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "features": { - "default": [], - "nightly": [] - }, - "homepage": null, - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utf8", - "parse", - "table" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/Cargo.toml", - "metadata": null, - "name": "utf8parse", - "publish": null, - "readme": null, - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "utf8parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "utf-8-demo", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/tests/utf-8-demo.rs", - "test": true - } - ], - "version": "0.2.1" - }, - { - "authors": [ - "Jim McGrath " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A library to find native dependencies in a vcpkg tree at build\ntime in order to be used in Cargo build scripts.\n", - "documentation": "https://docs.rs/vcpkg", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies", - "windows", - "macos", - "linux" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vcpkg-0.2.15/Cargo.toml", - "metadata": null, - "name": "vcpkg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mcgoo/vcpkg-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "vcpkg", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vcpkg-0.2.15/src/lib.rs", - "test": true - } - ], - "version": "0.2.15" - }, - { - "authors": [ - "Sergio Benitez " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Tiny crate to check the version of the installed/running rustc.", - "documentation": "https://docs.rs/version_check/", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "version", - "rustc", - "minimum", - "check" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/Cargo.toml", - "metadata": null, - "name": "version_check", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/SergioBenitez/version_check", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "version_check", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs", - "test": true - } - ], - "version": "0.9.4" - }, - { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arrayvec", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "utf8parse", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "vte_generate_state_changes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for implementing terminal emulators", - "documentation": "https://docs.rs/vte/", - "edition": "2018", - "features": { - "arrayvec": [ - "dep:arrayvec" - ], - "default": [ - "no_std" - ], - "nightly": [ - "utf8parse/nightly" - ], - "no_std": [ - "arrayvec" - ] - }, - "homepage": null, - "id": "vte 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "vte", - "parser", - "terminal" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/Cargo.toml", - "metadata": null, - "name": "vte", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "vte", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "parselog", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte-0.10.1/examples/parselog.rs", - "test": false - } - ], - "version": "0.10.1" - }, - { - "authors": [ - "Christian Duerr " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Proc macro for generating VTE state changes", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "vte_generate_state_changes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte_generate_state_changes-0.1.1/Cargo.toml", - "metadata": null, - "name": "vte_generate_state_changes", - "publish": null, - "readme": null, - "repository": "https://github.com/jwilm/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "vte_generate_state_changes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/vte_generate_state_changes-0.1.1/src/lib.rs", - "test": true - } - ], - "version": "0.1.1" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "same-file", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-util", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Recursively walk a directory.", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/walkdir", - "id": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.3/Cargo.toml", - "metadata": null, - "name": "walkdir", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "walkdir", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.3/src/lib.rs", - "test": true - } - ], - "version": "2.3.3" - }, - { - "authors": [ - "The Cranelift Project Developers" - ], - "categories": [ - "no-std", - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Experimental WASI API bindings for Rust", - "documentation": "https://docs.rs/wasi", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "rustc-dep-of-std": [ - "compiler_builtins", - "core", - "rustc-std-workspace-alloc" - ], - "rustc-std-workspace-alloc": [ - "dep:rustc-std-workspace-alloc" - ], - "std": [] - }, - "homepage": null, - "id": "wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "webassembly", - "wasm" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/Cargo.toml", - "metadata": null, - "name": "wasi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/wasi", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasi-0.11.0+wasi-snapshot-preview1/src/lib.rs", - "test": true - } - ], - "version": "0.11.0+wasi-snapshot-preview1" - }, - { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [ - "wasm" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen-macro", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "js-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.3.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test-crate-a", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test-crate-b", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "Easy support for interacting between JS and Rust.\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "default": [ - "spans", - "std" - ], - "enable-interning": [ - "std" - ], - "serde": [ - "dep:serde" - ], - "serde-serialize": [ - "serde", - "serde_json", - "std" - ], - "serde_json": [ - "dep:serde_json" - ], - "spans": [ - "wasm-bindgen-macro/spans" - ], - "std": [], - "strict-macro": [ - "wasm-bindgen-macro/strict-macro" - ], - "xxx_debug_only_print_generated_code": [ - "wasm-bindgen-macro/xxx_debug_only_print_generated_code" - ] - }, - "homepage": "https://rustwasm.github.io/", - "id": "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-serialize" - ] - } - } - }, - "name": "wasm-bindgen", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/src/lib.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "must_use", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/must_use.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "non_wasm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/non_wasm.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "headless", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/headless/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "std-crate-no-std-dep", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/std-crate-no-std-dep.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "unwrap_throw", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/unwrap_throw.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/tests/wasm/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-0.2.84/build.rs", - "test": false - } - ], - "version": "0.2.84" - }, - { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bumpalo", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "log", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "full" - ], - "kind": null, - "name": "syn", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen-shared", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Backend code generation of the wasm-bindgen tool\n", - "documentation": "https://docs.rs/wasm-bindgen-backend", - "edition": "2018", - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-backend 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.84/Cargo.toml", - "metadata": null, - "name": "wasm-bindgen-backend", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-backend", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-backend-0.2.84/src/lib.rs", - "test": true - } - ], - "version": "0.2.84" - }, - { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen-macro-support", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-futures", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "web-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.61", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "spans": [ - "wasm-bindgen-macro-support/spans" - ], - "strict-macro": [ - "wasm-bindgen-macro-support/strict-macro" - ], - "xxx_debug_only_print_generated_code": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-macro 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/Cargo.toml", - "metadata": null, - "name": "wasm-bindgen-macro", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "proc-macro" - ], - "name": "wasm-bindgen-macro", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ui", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-0.2.84/tests/ui.rs", - "test": true - } - ], - "version": "0.2.84" - }, - { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "visit", - "full" - ], - "kind": null, - "name": "syn", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen-backend", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen-shared", - "optional": false, - "registry": null, - "rename": null, - "req": "=0.2.84", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate\n", - "documentation": "https://docs.rs/wasm-bindgen", - "edition": "2018", - "features": { - "extra-traits": [ - "syn/extra-traits" - ], - "spans": [ - "wasm-bindgen-backend/spans" - ], - "strict-macro": [] - }, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-macro-support 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.84/Cargo.toml", - "metadata": null, - "name": "wasm-bindgen-macro-support", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-macro-support", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-macro-support-0.2.84/src/lib.rs", - "test": true - } - ], - "version": "0.2.84" - }, - { - "authors": [ - "The wasm-bindgen Developers" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal\ndependency.\n", - "documentation": "https://docs.rs/wasm-bindgen-shared", - "edition": "2018", - "features": {}, - "homepage": "https://rustwasm.github.io/wasm-bindgen/", - "id": "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": "wasm_bindgen", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/Cargo.toml", - "metadata": null, - "name": "wasm-bindgen-shared", - "publish": null, - "readme": null, - "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "wasm-bindgen-shared", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wasm-bindgen-shared-0.2.84/build.rs", - "test": false - } - ], - "version": "0.2.84" - }, - { - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "winapi-i686-pc-windows-gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-x86_64-pc-windows-gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - } - ], - "description": "Raw FFI bindings for all of Windows API.", - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "features": { - "accctrl": [], - "aclapi": [], - "activation": [], - "adhoc": [], - "appmgmt": [], - "audioclient": [], - "audiosessiontypes": [], - "avrt": [], - "basetsd": [], - "bcrypt": [], - "bits": [], - "bits10_1": [], - "bits1_5": [], - "bits2_0": [], - "bits2_5": [], - "bits3_0": [], - "bits4_0": [], - "bits5_0": [], - "bitscfg": [], - "bitsmsg": [], - "bluetoothapis": [], - "bluetoothleapis": [], - "bthdef": [], - "bthioctl": [], - "bthledef": [], - "bthsdpdef": [], - "bugcodes": [], - "cderr": [], - "cfg": [], - "cfgmgr32": [], - "cguid": [], - "combaseapi": [], - "coml2api": [], - "commapi": [], - "commctrl": [], - "commdlg": [], - "commoncontrols": [], - "consoleapi": [], - "corecrt": [], - "corsym": [], - "d2d1": [], - "d2d1_1": [], - "d2d1_2": [], - "d2d1_3": [], - "d2d1effectauthor": [], - "d2d1effects": [], - "d2d1effects_1": [], - "d2d1effects_2": [], - "d2d1svg": [], - "d2dbasetypes": [], - "d3d": [], - "d3d10": [], - "d3d10_1": [], - "d3d10_1shader": [], - "d3d10effect": [], - "d3d10misc": [], - "d3d10sdklayers": [], - "d3d10shader": [], - "d3d11": [], - "d3d11_1": [], - "d3d11_2": [], - "d3d11_3": [], - "d3d11_4": [], - "d3d11on12": [], - "d3d11sdklayers": [], - "d3d11shader": [], - "d3d11tokenizedprogramformat": [], - "d3d12": [], - "d3d12sdklayers": [], - "d3d12shader": [], - "d3d9": [], - "d3d9caps": [], - "d3d9types": [], - "d3dcommon": [], - "d3dcompiler": [], - "d3dcsx": [], - "d3dkmdt": [], - "d3dkmthk": [], - "d3dukmdt": [], - "d3dx10core": [], - "d3dx10math": [], - "d3dx10mesh": [], - "datetimeapi": [], - "davclnt": [], - "dbghelp": [], - "dbt": [], - "dcommon": [], - "dcomp": [], - "dcompanimation": [], - "dcomptypes": [], - "dde": [], - "ddraw": [], - "ddrawi": [], - "ddrawint": [], - "debug": [ - "impl-debug" - ], - "debugapi": [], - "devguid": [], - "devicetopology": [], - "devpkey": [], - "devpropdef": [], - "dinput": [], - "dinputd": [], - "dispex": [], - "dmksctl": [], - "dmusicc": [], - "docobj": [], - "documenttarget": [], - "dot1x": [], - "dpa_dsa": [], - "dpapi": [], - "dsgetdc": [], - "dsound": [], - "dsrole": [], - "dvp": [], - "dwmapi": [], - "dwrite": [], - "dwrite_1": [], - "dwrite_2": [], - "dwrite_3": [], - "dxdiag": [], - "dxfile": [], - "dxgi": [], - "dxgi1_2": [], - "dxgi1_3": [], - "dxgi1_4": [], - "dxgi1_5": [], - "dxgi1_6": [], - "dxgidebug": [], - "dxgiformat": [], - "dxgitype": [], - "dxva2api": [], - "dxvahd": [], - "eaptypes": [], - "enclaveapi": [], - "endpointvolume": [], - "errhandlingapi": [], - "everything": [], - "evntcons": [], - "evntprov": [], - "evntrace": [], - "excpt": [], - "exdisp": [], - "fibersapi": [], - "fileapi": [], - "functiondiscoverykeys_devpkey": [], - "gl-gl": [], - "guiddef": [], - "handleapi": [], - "heapapi": [], - "hidclass": [], - "hidpi": [], - "hidsdi": [], - "hidusage": [], - "highlevelmonitorconfigurationapi": [], - "hstring": [], - "http": [], - "ifdef": [], - "ifmib": [], - "imm": [], - "impl-debug": [], - "impl-default": [], - "in6addr": [], - "inaddr": [], - "inspectable": [], - "interlockedapi": [], - "intsafe": [], - "ioapiset": [], - "ipexport": [], - "iphlpapi": [], - "ipifcons": [], - "ipmib": [], - "iprtrmib": [], - "iptypes": [], - "jobapi": [], - "jobapi2": [], - "knownfolders": [], - "ks": [], - "ksmedia": [], - "ktmtypes": [], - "ktmw32": [], - "l2cmn": [], - "libloaderapi": [], - "limits": [], - "lmaccess": [], - "lmalert": [], - "lmapibuf": [], - "lmat": [], - "lmcons": [], - "lmdfs": [], - "lmerrlog": [], - "lmjoin": [], - "lmmsg": [], - "lmremutl": [], - "lmrepl": [], - "lmserver": [], - "lmshare": [], - "lmstats": [], - "lmsvc": [], - "lmuse": [], - "lmwksta": [], - "lowlevelmonitorconfigurationapi": [], - "lsalookup": [], - "memoryapi": [], - "minschannel": [], - "minwinbase": [], - "minwindef": [], - "mmdeviceapi": [], - "mmeapi": [], - "mmreg": [], - "mmsystem": [], - "mprapidef": [], - "msaatext": [], - "mscat": [], - "mschapp": [], - "mssip": [], - "mstcpip": [], - "mswsock": [], - "mswsockdef": [], - "namedpipeapi": [], - "namespaceapi": [], - "nb30": [], - "ncrypt": [], - "netioapi": [], - "nldef": [], - "ntddndis": [], - "ntddscsi": [], - "ntddser": [], - "ntdef": [], - "ntlsa": [], - "ntsecapi": [], - "ntstatus": [], - "oaidl": [], - "objbase": [], - "objidl": [], - "objidlbase": [], - "ocidl": [], - "ole2": [], - "oleauto": [], - "olectl": [], - "oleidl": [], - "opmapi": [], - "pdh": [], - "perflib": [], - "physicalmonitorenumerationapi": [], - "playsoundapi": [], - "portabledevice": [], - "portabledeviceapi": [], - "portabledevicetypes": [], - "powerbase": [], - "powersetting": [], - "powrprof": [], - "processenv": [], - "processsnapshot": [], - "processthreadsapi": [], - "processtopologyapi": [], - "profileapi": [], - "propidl": [], - "propkey": [], - "propkeydef": [], - "propsys": [], - "prsht": [], - "psapi": [], - "qos": [], - "realtimeapiset": [], - "reason": [], - "restartmanager": [], - "restrictederrorinfo": [], - "rmxfguid": [], - "roapi": [], - "robuffer": [], - "roerrorapi": [], - "rpc": [], - "rpcdce": [], - "rpcndr": [], - "rtinfo": [], - "sapi": [], - "sapi51": [], - "sapi53": [], - "sapiddk": [], - "sapiddk51": [], - "schannel": [], - "sddl": [], - "securityappcontainer": [], - "securitybaseapi": [], - "servprov": [], - "setupapi": [], - "shellapi": [], - "shellscalingapi": [], - "shlobj": [], - "shobjidl": [], - "shobjidl_core": [], - "shtypes": [], - "softpub": [], - "spapidef": [], - "spellcheck": [], - "sporder": [], - "sql": [], - "sqlext": [], - "sqltypes": [], - "sqlucode": [], - "sspi": [], - "std": [], - "stralign": [], - "stringapiset": [], - "strmif": [], - "subauth": [], - "synchapi": [], - "sysinfoapi": [], - "systemtopologyapi": [], - "taskschd": [], - "tcpestats": [], - "tcpmib": [], - "textstor": [], - "threadpoolapiset": [], - "threadpoollegacyapiset": [], - "timeapi": [], - "timezoneapi": [], - "tlhelp32": [], - "transportsettingcommon": [], - "tvout": [], - "udpmib": [], - "unknwnbase": [], - "urlhist": [], - "urlmon": [], - "usb": [], - "usbioctl": [], - "usbiodef": [], - "usbscan": [], - "usbspec": [], - "userenv": [], - "usp10": [], - "utilapiset": [], - "uxtheme": [], - "vadefs": [], - "vcruntime": [], - "vsbackup": [], - "vss": [], - "vsserror": [], - "vswriter": [], - "wbemads": [], - "wbemcli": [], - "wbemdisp": [], - "wbemprov": [], - "wbemtran": [], - "wct": [], - "werapi": [], - "winbase": [], - "wincodec": [], - "wincodecsdk": [], - "wincon": [], - "wincontypes": [], - "wincred": [], - "wincrypt": [], - "windef": [], - "windot11": [], - "windowsceip": [], - "windowsx": [], - "winefs": [], - "winerror": [], - "winevt": [], - "wingdi": [], - "winhttp": [], - "wininet": [], - "winineti": [], - "winioctl": [], - "winnetwk": [], - "winnls": [], - "winnt": [], - "winreg": [], - "winsafer": [], - "winscard": [], - "winsmcrd": [], - "winsock2": [], - "winspool": [], - "winstring": [], - "winsvc": [], - "wintrust": [], - "winusb": [], - "winusbio": [], - "winuser": [], - "winver": [], - "wlanapi": [], - "wlanihv": [], - "wlanihvtypes": [], - "wlantypes": [], - "wlclient": [], - "wmistr": [], - "wnnc": [], - "wow64apiset": [], - "wpdmtpextensions": [], - "ws2bth": [], - "ws2def": [], - "ws2ipdef": [], - "ws2spi": [], - "ws2tcpip": [], - "wtsapi32": [], - "wtypes": [], - "wtypesbase": [], - "xinput": [] - }, - "homepage": null, - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "features": [ - "everything", - "impl-debug", - "impl-default" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs", - "test": false - } - ], - "version": "0.3.9" - }, - { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "metadata": null, - "name": "winapi-i686-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-i686-pc-windows-gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std", - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A dumping ground for high level safe wrappers over winapi.", - "documentation": "https://docs.rs/winapi-util", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/winapi-util", - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "winapi", - "util", - "win" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi-util", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "winapi-util", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "metadata": null, - "name": "winapi-x86_64-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-x86_64-pc-windows-gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows_aarch64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_AI": [ - "Win32" - ], - "Win32_AI_MachineLearning": [ - "Win32_AI" - ], - "Win32_AI_MachineLearning_DirectML": [ - "Win32_AI_MachineLearning" - ], - "Win32_AI_MachineLearning_WinML": [ - "Win32_AI_MachineLearning" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_CompositionSwapchain": [ - "Win32_Graphics" - ], - "Win32_Graphics_DXCore": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D_Common": [ - "Win32_Graphics_Direct2D" - ], - "Win32_Graphics_Direct3D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D10": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D_Dxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_Direct3D_Fxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_DirectComposition": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectDraw": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectManipulation": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectWrite": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi_Common": [ - "Win32_Graphics_Dxgi" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging_D2D": [ - "Win32_Graphics_Imaging" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectSound": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DirectShow": [ - "Win32_Media" - ], - "Win32_Media_DirectShow_Xml": [ - "Win32_Media_DirectShow" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaFoundation": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_PictureAcquisition": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_SideShow": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_TransactionServer": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WinRT": [ - "Win32_System" - ], - "Win32_System_WinRT_AllJoyn": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Composition": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_CoreInputView": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Direct3D11": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Display": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics_Capture": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Direct2D": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Imaging": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Holographic": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Isolation": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_ML": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Media": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Pdf": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Printing": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Shell": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Storage": [ - "Win32_System_WinRT" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_UI_Xaml": [ - "Win32_UI" - ], - "Win32_UI_Xaml_Diagnostics": [ - "Win32_UI_Xaml" - ], - "default": [], - "deprecated": [] - }, - "homepage": null, - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs", - "test": true - } - ], - "version": "0.42.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows-targets", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows_raw_dylib))", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/src/lib.rs", - "test": true - } - ], - "version": "0.45.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows-targets", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Wdk": [], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ClrProfiling": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_ActiveScript": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows_aarch64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.2/Cargo.toml", - "metadata": null, - "name": "windows-targets", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.2/src/lib.rs", - "test": true - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows_aarch64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/Cargo.toml", - "metadata": null, - "name": "windows-targets", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.2/build.rs", - "test": false - } - ], - "version": "0.42.2" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [], - "categories": [ - "parsing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-stream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "is-terminal", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "memchr", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "terminal_size", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "circular", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "escargot", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "examples" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "term-transcript", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A byte-oriented, zero-copy, parser combinators library", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [], - "debug": [ - "dep:anstyle", - "dep:is-terminal", - "dep:terminal_size", - "dep:anstyle-stream" - ], - "default": [ - "std" - ], - "simd": [ - "dep:memchr" - ], - "std": [ - "alloc", - "memchr?/std" - ], - "unstable-doc": [ - "alloc", - "std", - "simd" - ] - }, - "homepage": null, - "id": "winnow 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/winnow-rs/winnow/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "winnow", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/winnow-rs/winnow", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "winnow", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "arithmetic", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/arithmetic/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "css", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/css/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "custom_error", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/custom_error.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "http", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/http/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "ini", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ini/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "json", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "ndjson", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ndjson/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "json_iterator", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json_iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "iterator", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "s_expression", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/s_expression/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "string", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/string/main.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "arithmetic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/arithmetic/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "contains_token", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/benches/contains_token.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "number", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/benches/number.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "http", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/http/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "ini", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/ini/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "json", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winnow-0.4.6/examples/json/bench.rs", - "test": false - } - ], - "version": "0.4.6" - }, - { - "authors": [ - "The RustCrypto Project Developers" - ], - "categories": [ - "cryptography", - "memory-management", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "zeroize_derive", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Securely clear secrets from memory with a simple trait built on\nstable Rust primitives which guarantee memory is zeroed using an\noperation will not be 'optimized away' by the compiler.\nUses a portable pure Rust implementation that works everywhere,\neven WASM!\n", - "documentation": null, - "edition": "2021", - "features": { - "aarch64": [], - "alloc": [], - "default": [ - "alloc" - ], - "derive": [ - "zeroize_derive" - ], - "serde": [ - "dep:serde" - ], - "std": [ - "alloc" - ], - "zeroize_derive": [ - "dep:zeroize_derive" - ] - }, - "homepage": null, - "id": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memory", - "memset", - "secure", - "volatile", - "zero" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - } - }, - "name": "zeroize", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/RustCrypto/utils/tree/master/zeroize", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "zeroize", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zeroize", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/tests/zeroize.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "zeroize_derive", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/zeroize-1.6.0/tests/zeroize_derive.rs", - "test": true - } - ], - "version": "1.6.0" - } - ], - "resolve": { - "nodes": [ - { - "dependencies": [], - "deps": [], - "features": [], - "id": "adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "aho-corasick 0.7.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "perf-literal", - "std" - ], - "id": "aho-corasick 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle-wincon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle_parse", - "pkg": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle_query", - "pkg": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "anstyle_wincon", - "pkg": "anstyle-wincon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "colorchoice", - "pkg": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "is_terminal", - "pkg": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "utf8parse", - "pkg": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "auto", - "default", - "wincon" - ], - "id": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "utf8parse", - "pkg": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "utf8" - ], - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "anstyle-wincon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ], - "id": "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ], - "id": "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "typenum", - "pkg": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "generic_array", - "pkg": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "block-buffer 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "once_cell", - "pkg": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "regex_automata", - "pkg": "regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "std", - "unicode" - ], - "id": "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "bumpalo 3.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "bytesize 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytesize 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cargo-platform 0.1.2 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-platform)", - "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)", - "cargo-test-support 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-support)", - "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)", - "clap 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)", - "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)", - "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "fwdansi 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "git2-curl 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "home 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - "http-auth 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ignore 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", - "im-rc 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazycell 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "opener 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "os_info 3.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "pathdiff 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-workspace-hack 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustfix 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "semver 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_ignored 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "strip-ansi-escapes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anyhow", - "pkg": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "base64", - "pkg": "base64 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bytesize", - "pkg": "bytesize 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cargo_platform", - "pkg": "cargo-platform 0.1.2 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-platform)" - }, - { - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ], - "name": "cargo_test_macro", - "pkg": "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)" - }, - { - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ], - "name": "cargo_test_support", - "pkg": "cargo-test-support 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-support)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cargo_util", - "pkg": "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "clap", - "pkg": "clap 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crates_io", - "pkg": "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "curl", - "pkg": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "curl_sys", - "pkg": "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "env_logger", - "pkg": "env_logger 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "filetime", - "pkg": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "build", - "target": null - } - ], - "name": "flate2", - "pkg": "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "fwdansi", - "pkg": "fwdansi 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "git2", - "pkg": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "git2_curl", - "pkg": "git2-curl 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "glob", - "pkg": "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hex", - "pkg": "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hmac", - "pkg": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "home", - "pkg": "home 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "http_auth", - "pkg": "http-auth 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "humantime", - "pkg": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ignore", - "pkg": "ignore 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "im_rc", - "pkg": "im-rc 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "indexmap", - "pkg": "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "is_terminal", - "pkg": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "itertools", - "pkg": "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "jobserver", - "pkg": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "lazy_static", - "pkg": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "lazycell", - "pkg": "lazycell 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libgit2_sys", - "pkg": "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "opener", - "pkg": "opener 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "os_info", - "pkg": "os_info 3.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pasetors", - "pkg": "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pathdiff", - "pkg": "pathdiff 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rustc_workspace_hack", - "pkg": "rustc-workspace-hack 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rustfix", - "pkg": "rustfix 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ], - "name": "same_file", - "pkg": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "semver", - "pkg": "semver 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_value", - "pkg": "serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_ignored", - "pkg": "serde_ignored 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_json", - "pkg": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "sha1", - "pkg": "sha1 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "shell_escape", - "pkg": "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "dev", - "target": null - } - ], - "name": "snapbox", - "pkg": "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "strip_ansi_escapes", - "pkg": "strip-ansi-escapes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - }, - { - "kind": "build", - "target": null - } - ], - "name": "tar", - "pkg": "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tempfile", - "pkg": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "termcolor", - "pkg": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "time", - "pkg": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml", - "pkg": "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml_edit", - "pkg": "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_width", - "pkg": "unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_xid", - "pkg": "unicode-xid 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "url", - "pkg": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "walkdir", - "pkg": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "cargo 0.70.1 (path+file://$CARGO_MANIFEST_DIR)" - }, - { - "dependencies": [ - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "cargo-platform 0.1.2 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-platform)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)" - }, - { - "dependencies": [ - "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)", - "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)", - "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)", - "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anyhow", - "pkg": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cargo_test_macro", - "pkg": "cargo-test-macro 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-macro)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cargo_util", - "pkg": "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crates_io", - "pkg": "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "filetime", - "pkg": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "flate2", - "pkg": "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "git2", - "pkg": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "glob", - "pkg": "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "itertools", - "pkg": "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "lazy_static", - "pkg": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pasetors", - "pkg": "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_json", - "pkg": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "snapbox", - "pkg": "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tar", - "pkg": "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "termcolor", - "pkg": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "time", - "pkg": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml", - "pkg": "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "url", - "pkg": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "cargo-test-support 0.1.0 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-test-support)" - }, - { - "dependencies": [ - "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "crypto-hash 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "miow 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anyhow", - "pkg": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"macos\")" - } - ], - "name": "core_foundation", - "pkg": "core-foundation 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crypto_hash", - "pkg": "crypto-hash 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "filetime", - "pkg": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hex", - "pkg": "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "jobserver", - "pkg": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "miow", - "pkg": "miow 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "same_file", - "pkg": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "shell_escape", - "pkg": "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tempfile", - "pkg": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "walkdir", - "pkg": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "cargo-util 0.2.3 (path+file://$CARGO_MANIFEST_DIR/crates/cargo-util)" - }, - { - "dependencies": [ - "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "jobserver", - "pkg": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "jobserver", - "parallel" - ], - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "clap_builder 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "clap_builder", - "pkg": "clap_builder 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "color", - "default", - "error-context", - "help", - "std", - "suggestions", - "usage" - ], - "id": "clap 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "clap_lex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstream", - "pkg": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "clap_lex", - "pkg": "clap_lex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "strsim", - "pkg": "strsim 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "color", - "error-context", - "help", - "std", - "suggestions", - "usage" - ], - "id": "clap_builder 4.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "clap_lex 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "commoncrypto_sys", - "pkg": "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "core-foundation-sys 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "core_foundation_sys", - "pkg": "core-foundation-sys 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "mac_os_10_7_support" - ], - "id": "core-foundation 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "mac_os_10_7_support" - ], - "id": "core-foundation-sys 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-linux-android" - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))" - }, - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)", - "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anyhow", - "pkg": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "curl", - "pkg": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "percent_encoding", - "pkg": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_json", - "pkg": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "url", - "pkg": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "crates-io 0.36.0 (path+file://$CARGO_MANIFEST_DIR/crates/crates-io)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "generic_array", - "pkg": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "generic-array", - "rand_core", - "zeroize" - ], - "id": "crypto-bigint 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "generic_array", - "pkg": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "typenum", - "pkg": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "std" - ], - "id": "crypto-common 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.52 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_os = \"macos\", target_os = \"ios\"))" - } - ], - "name": "commoncrypto", - "pkg": "commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hex", - "pkg": "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(target_os = \"windows\", target_os = \"macos\", target_os = \"ios\")))" - } - ], - "name": "openssl", - "pkg": "openssl 0.10.52 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"windows\")" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "crypto-hash 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "ct-codecs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "socket2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "curl_sys", - "pkg": "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(unix, not(target_os = \"macos\")))" - } - ], - "name": "openssl_probe", - "pkg": "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(unix, not(target_os = \"macos\")))" - } - ], - "name": "openssl_sys", - "pkg": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_env = \"msvc\")" - } - ], - "name": "schannel", - "pkg": "schannel 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "socket2", - "pkg": "socket2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_env = \"msvc\")" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "http2", - "openssl-probe", - "openssl-sys", - "ssl" - ], - "id": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "libnghttp2-sys 0.1.7+1.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libnghttp2_sys", - "pkg": "libnghttp2-sys 0.1.7+1.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libz_sys", - "pkg": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(unix, not(target_os = \"macos\")))" - } - ], - "name": "openssl_sys", - "pkg": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "pkg_config", - "pkg": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": "cfg(target_env = \"msvc\")" - } - ], - "name": "vcpkg", - "pkg": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "http2", - "libnghttp2-sys", - "openssl-sys", - "ssl" - ], - "id": "curl-sys 0.4.61+curl-8.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "const_oid", - "pkg": "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pem_rfc7468", - "pkg": "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "oid", - "pem", - "std", - "zeroize" - ], - "id": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "block-buffer 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)", - "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crypto-common 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "block_buffer", - "pkg": "block-buffer 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "const_oid", - "pkg": "const-oid 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crypto_common", - "pkg": "crypto-common 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "block-buffer", - "const-oid", - "core-api", - "default", - "mac", - "oid", - "std", - "subtle" - ], - "id": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "dunce 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rfc6979 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "signature 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "der", - "pkg": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "digest", - "pkg": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "elliptic_curve", - "pkg": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rfc6979", - "pkg": "rfc6979 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "signature", - "pkg": "signature 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "arithmetic", - "der", - "digest", - "hazmat", - "pem", - "pkcs8", - "rfc6979", - "signing", - "std", - "verifying" - ], - "id": "ecdsa 0.16.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "getrandom", - "pkg": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "getrandom", - "random" - ], - "id": "ed25519-compact 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "use_std" - ], - "id": "either 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crypto-bigint 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "group 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hkdf 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "sec1 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "base16ct", - "pkg": "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crypto_bigint", - "pkg": "crypto-bigint 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "digest", - "pkg": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ff", - "pkg": "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "generic_array", - "pkg": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "group", - "pkg": "group 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hkdf", - "pkg": "hkdf 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pem_rfc7468", - "pkg": "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pkcs8", - "pkg": "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "sec1", - "pkg": "sec1 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "arithmetic", - "digest", - "ecdh", - "ff", - "group", - "hazmat", - "pem", - "pkcs8", - "sec1", - "std" - ], - "id": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "humantime", - "pkg": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "is_terminal", - "pkg": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "regex", - "pkg": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "termcolor", - "pkg": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "auto-color", - "color", - "default", - "humantime", - "regex" - ], - "id": "env_logger 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"dragonfly\")" - } - ], - "name": "errno_dragonfly", - "pkg": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "errno 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))" - } - ], - "name": "instant", - "pkg": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "fastrand 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc" - ], - "id": "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "fiat-crypto 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ], - "name": "syscall", - "pkg": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz_oxide 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crc32fast", - "pkg": "crc32fast 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libz_sys", - "pkg": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))" - } - ], - "name": "miniz_oxide", - "pkg": "miniz_oxide 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "any_zlib", - "libz-sys", - "zlib" - ], - "id": "flate2 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "foreign_types_shared", - "pkg": "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "percent_encoding", - "pkg": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "termcolor", - "pkg": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "fwdansi 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "typenum", - "pkg": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "version_check", - "pkg": "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "more_lengths", - "zeroize" - ], - "id": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.61 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" - } - ], - "name": "js_sys", - "pkg": "js-sys 0.3.61 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ], - "name": "wasi", - "pkg": "wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))" - } - ], - "name": "wasm_bindgen", - "pkg": "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "js", - "js-sys", - "std", - "wasm-bindgen" - ], - "id": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libgit2_sys", - "pkg": "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(unix, not(target_os = \"macos\")))" - } - ], - "name": "openssl_probe", - "pkg": "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(unix, not(target_os = \"macos\")))" - } - ], - "name": "openssl_sys", - "pkg": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "url", - "pkg": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "https", - "openssl-probe", - "openssl-sys", - "ssh", - "ssh_key_from_memory" - ], - "id": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)", - "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "curl", - "pkg": "curl 0.4.44 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "git2", - "pkg": "git2 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "url", - "pkg": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "git2-curl 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "glob 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "aho-corasick 0.7.20 (registry+https://github.com/rust-lang/crates.io-index)", - "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "aho_corasick", - "pkg": "aho-corasick 0.7.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bstr", - "pkg": "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "fnv", - "pkg": "fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "regex", - "pkg": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "log" - ], - "id": "globset 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ff", - "pkg": "ff 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc" - ], - "id": "group 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "raw" - ], - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "std" - ], - "id": "hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hmac", - "pkg": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "hkdf 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "digest", - "pkg": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "reset" - ], - "id": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "home 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "http-auth 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "unicode-bidi 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_bidi", - "pkg": "unicode-bidi 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_normalization", - "pkg": "unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "globset 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "globset", - "pkg": "globset 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "lazy_static", - "pkg": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "regex", - "pkg": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "same_file", - "pkg": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "thread_local", - "pkg": "thread_local 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "walkdir", - "pkg": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi_util", - "pkg": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "ignore 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_xoshiro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sized-chunks 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitmaps", - "pkg": "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_xoshiro", - "pkg": "rand_xoshiro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "sized_chunks", - "pkg": "sized-chunks 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "typenum", - "pkg": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "version_check", - "pkg": "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "im-rc 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "autocfg", - "pkg": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hashbrown", - "pkg": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "std" - ], - "id": "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - } - ], - "name": "hermit_abi", - "pkg": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "close", - "default", - "hermit-abi", - "libc", - "windows-sys" - ], - "id": "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", - "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - } - ], - "name": "hermit_abi", - "pkg": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "io_lifetimes", - "pkg": "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))" - } - ], - "name": "rustix", - "pkg": "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "is-terminal 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "either 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "either", - "pkg": "either 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "use_alloc", - "use_std" - ], - "id": "itertools 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "jobserver 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wasm_bindgen", - "pkg": "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "js-sys 0.3.61 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "lazycell 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "extra_traits", - "std" - ], - "id": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "libssh2-sys 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libssh2_sys", - "pkg": "libssh2-sys 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libz_sys", - "pkg": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "openssl_sys", - "pkg": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "pkg_config", - "pkg": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "https", - "libssh2-sys", - "openssl-sys", - "ssh", - "ssh_key_from_memory" - ], - "id": "libgit2-sys 0.14.1+1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "libnghttp2-sys 0.1.7+1.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libz_sys", - "pkg": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "openssl_sys", - "pkg": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "pkg_config", - "pkg": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": "cfg(target_env = \"msvc\")" - } - ], - "name": "vcpkg", - "pkg": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "libssh2-sys 0.2.23 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "pkg_config", - "pkg": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": "cfg(target_env = \"msvc\")" - } - ], - "name": "vcpkg", - "pkg": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "libc" - ], - "id": "libz-sys 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "errno", - "general", - "ioctl", - "no_std" - ], - "id": "linux-raw-sys 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "std" - ], - "id": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "adler", - "pkg": "adler 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "with-alloc" - ], - "id": "miniz_oxide 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "miow 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "autocfg", - "pkg": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "std" - ], - "id": "num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "race", - "std" - ], - "id": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"linux\")" - } - ], - "name": "bstr", - "pkg": "bstr 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "opener 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "foreign_types", - "pkg": "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "once_cell", - "pkg": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "openssl_macros", - "pkg": "openssl-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ffi", - "pkg": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default" - ], - "id": "openssl 0.10.52 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "syn", - "pkg": "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "openssl-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "pkg_config", - "pkg": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": "build", - "target": "cfg(target_env = \"msvc\")" - } - ], - "name": "vcpkg", - "pkg": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "openssl-sys 0.9.87 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "num_traits", - "pkg": "num-traits 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "fiat-crypto 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "fiat_crypto", - "pkg": "fiat-crypto 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "orion 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "serde" - ], - "id": "os_info 3.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "ecdsa 0.16.6 (registry+https://github.com/rust-lang/crates.io-index)", - "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)", - "primeorder 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ecdsa_core", - "pkg": "ecdsa 0.16.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "elliptic_curve", - "pkg": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "primeorder", - "pkg": "primeorder 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "sha2", - "pkg": "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "arithmetic", - "default", - "digest", - "ecdh", - "ecdsa", - "ecdsa-core", - "pem", - "pkcs8", - "sha2", - "sha384", - "std" - ], - "id": "p384 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "ct-codecs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-compact 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "orion 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)", - "p384 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ct_codecs", - "pkg": "ct-codecs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ed25519_compact", - "pkg": "ed25519-compact 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "getrandom", - "pkg": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "orion", - "pkg": "orion 0.17.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "p384", - "pkg": "p384 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "regex", - "pkg": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_json", - "pkg": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "sha2", - "pkg": "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "time", - "pkg": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "ed25519-compact", - "orion", - "p384", - "paserk", - "rand_core", - "regex", - "serde", - "serde_json", - "sha2", - "std", - "time", - "v3", - "v4" - ], - "id": "pasetors 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "pathdiff 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "base64ct", - "pkg": "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc" - ], - "id": "pem-rfc7468 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default" - ], - "id": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", - "spki 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "der", - "pkg": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "spki", - "pkg": "spki 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "pem", - "std" - ], - "id": "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "pkg-config 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "elliptic_curve", - "pkg": "elliptic-curve 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "primeorder 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_ident", - "pkg": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "proc-macro" - ], - "id": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "proc-macro" - ], - "id": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "getrandom", - "pkg": "getrandom 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "getrandom", - "std" - ], - "id": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "rand_xoshiro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "redox_syscall 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "aho-corasick 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "aho_corasick", - "pkg": "aho-corasick 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "regex_syntax", - "pkg": "regex-syntax 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "aho-corasick", - "default", - "memchr", - "perf", - "perf-cache", - "perf-dfa", - "perf-inline", - "perf-literal", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "id": "regex 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "id": "regex-syntax 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hmac", - "pkg": "hmac 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "rfc6979 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "rustc-workspace-hack 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anyhow", - "pkg": "anyhow 1.0.71 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_json", - "pkg": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "rustfix 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "errno 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "linux-raw-sys 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))" - }, - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "libc_errno", - "pkg": "errno 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "io_lifetimes", - "pkg": "io-lifetimes 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))" - }, - { - "kind": null, - "target": "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))" - }, - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))" - } - ], - "name": "linux_raw_sys", - "pkg": "linux-raw-sys 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "fs", - "io-lifetimes", - "libc", - "std", - "termios", - "use-libc-auxv" - ], - "id": "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "ryu 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi_util", - "pkg": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "schannel 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)", - "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "base16ct", - "pkg": "base16ct 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "der", - "pkg": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "generic_array", - "pkg": "generic-array 0.14.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "pkcs8", - "pkg": "pkcs8 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "subtle", - "pkg": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "zeroize", - "pkg": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "der", - "pem", - "pkcs8", - "point", - "std", - "subtle", - "zeroize" - ], - "id": "sec1 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "serde", - "std" - ], - "id": "semver 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde_derive 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_derive", - "pkg": "serde_derive 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "derive", - "serde_derive", - "std" - ], - "id": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ordered_float", - "pkg": "ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "syn", - "pkg": "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default" - ], - "id": "serde_derive 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "serde_ignored 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ryu 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "itoa", - "pkg": "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "ryu", - "pkg": "ryu 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "raw_value", - "std" - ], - "id": "serde_json 1.0.96 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "serde" - ], - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))" - } - ], - "name": "cpufeatures", - "pkg": "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "digest", - "pkg": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "sha1 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))" - } - ], - "name": "cpufeatures", - "pkg": "cpufeatures 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "digest", - "pkg": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "sha2 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "shell-escape 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "digest", - "pkg": "digest 0.10.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rand_core", - "pkg": "rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "digest", - "rand_core", - "std" - ], - "id": "signature 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "inline", - "text" - ], - "id": "similar 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitmaps", - "pkg": "bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "typenum", - "pkg": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "sized-chunks 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "dunce 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "similar 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "snapbox-macros 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstream", - "pkg": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "content_inspector", - "pkg": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "dunce", - "pkg": "dunce 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "filetime", - "pkg": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "normalize_line_endings", - "pkg": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "similar", - "pkg": "similar 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "snapbox_macros", - "pkg": "snapbox-macros 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tempfile", - "pkg": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "walkdir", - "pkg": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "color", - "color-auto", - "default", - "detect-encoding", - "diff", - "path" - ], - "id": "snapbox 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstream", - "pkg": "anstream 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "color", - "default" - ], - "id": "snapbox-macros 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "socket2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "base64ct", - "pkg": "base64ct 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "der", - "pkg": "der 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "pem", - "std" - ], - "id": "spki 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "vte 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "vte", - "pkg": "vte 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "strip-ansi-escapes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "strsim 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "i128" - ], - "id": "subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_ident", - "pkg": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "full", - "parsing", - "printing", - "proc-macro", - "quote", - "visit" - ], - "id": "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_ident", - "pkg": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "full", - "parsing", - "printing", - "proc-macro", - "quote" - ], - "id": "syn 2.0.15 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "filetime", - "pkg": "filetime 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.142 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "tar 0.4.38 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fastrand 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "fastrand", - "pkg": "fastrand 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ], - "name": "syscall", - "pkg": "redox_syscall 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\"))" - } - ], - "name": "rustix", - "pkg": "rustix 0.37.19 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "tempfile 3.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi_util", - "pkg": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "termcolor 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "once_cell", - "pkg": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "thread_local 1.1.7 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "time-macros 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "itoa", - "pkg": "itoa 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "time_core", - "pkg": "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "time_macros", - "pkg": "time-macros 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "formatting", - "parsing", - "std" - ], - "id": "time 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "time_core", - "pkg": "time-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "formatting", - "parsing" - ], - "id": "time-macros 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "tinyvec_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tinyvec_macros", - "pkg": "tinyvec_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "tinyvec_macros" - ], - "id": "tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "tinyvec_macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_spanned", - "pkg": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml_datetime", - "pkg": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml_edit", - "pkg": "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "display", - "parse" - ], - "id": "toml 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "serde" - ], - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winnow 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "indexmap", - "pkg": "indexmap 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.162 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_spanned", - "pkg": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml_datetime", - "pkg": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "winnow", - "pkg": "winnow 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "serde" - ], - "id": "toml_edit 0.19.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "hardcoded-data", - "std" - ], - "id": "unicode-bidi 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "unicode-ident 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tinyvec", - "pkg": "tinyvec 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "std" - ], - "id": "unicode-normalization 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "unicode-width 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "unicode-xid 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "form_urlencoded", - "pkg": "form_urlencoded 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "idna", - "pkg": "idna 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "percent_encoding", - "pkg": "percent-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default" - ], - "id": "url 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "vcpkg 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "vte_generate_state_changes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "arrayvec", - "pkg": "arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "utf8parse", - "pkg": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "vte_generate_state_changes", - "pkg": "vte_generate_state_changes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "arrayvec", - "default", - "no_std" - ], - "id": "vte 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "vte_generate_state_changes 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "same_file", - "pkg": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi_util", - "pkg": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "walkdir 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "wasi 0.11.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wasm_bindgen_macro", - "pkg": "wasm-bindgen-macro 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "spans", - "std" - ], - "id": "wasm-bindgen 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bumpalo 3.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bumpalo", - "pkg": "bumpalo 3.12.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "log", - "pkg": "log 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "once_cell", - "pkg": "once_cell 1.17.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "syn", - "pkg": "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wasm_bindgen_shared", - "pkg": "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "spans" - ], - "id": "wasm-bindgen-backend 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wasm_bindgen_macro_support", - "pkg": "wasm-bindgen-macro-support 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "spans" - ], - "id": "wasm-bindgen-macro 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "syn", - "pkg": "syn 1.0.109 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wasm_bindgen_backend", - "pkg": "wasm-bindgen-backend 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wasm_bindgen_shared", - "pkg": "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "spans" - ], - "id": "wasm-bindgen-macro-support 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "wasm-bindgen-shared 0.2.84 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - } - ], - "name": "winapi_i686_pc_windows_gnu", - "pkg": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - } - ], - "name": "winapi_x86_64_pc_windows_gnu", - "pkg": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "libloaderapi", - "minwindef", - "ntdef", - "ntstatus", - "processenv", - "processthreadsapi", - "shellapi", - "std", - "sysinfoapi", - "winbase", - "wincon", - "wincrypt", - "winerror", - "winnt", - "winreg", - "winsock2", - "winuser", - "ws2def", - "ws2ipdef", - "ws2tcpip" - ], - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ], - "name": "windows_aarch64_gnullvm", - "pkg": "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-msvc" - }, - { - "kind": null, - "target": "aarch64-uwp-windows-msvc" - } - ], - "name": "windows_aarch64_msvc", - "pkg": "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - }, - { - "kind": null, - "target": "i686-uwp-windows-gnu" - } - ], - "name": "windows_i686_gnu", - "pkg": "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-msvc" - }, - { - "kind": null, - "target": "i686-uwp-windows-msvc" - } - ], - "name": "windows_i686_msvc", - "pkg": "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-gnu" - } - ], - "name": "windows_x86_64_gnu", - "pkg": "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ], - "name": "windows_x86_64_gnullvm", - "pkg": "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-msvc" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-msvc" - } - ], - "name": "windows_x86_64_msvc", - "pkg": "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Security_Authentication", - "Win32_Security_Authentication_Identity", - "Win32_Security_Credentials", - "Win32_Security_Cryptography", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_IO", - "Win32_System_Memory", - "Win32_System_Pipes", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "default" - ], - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-targets 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows_raw_dylib))" - } - ], - "name": "windows_targets", - "pkg": "windows-targets 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_IO", - "Win32_System_JobObjects", - "Win32_System_SystemServices", - "Win32_System_Threading", - "default" - ], - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "windows_targets", - "pkg": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_Diagnostics", - "Win32_System_Diagnostics_Debug", - "Win32_System_IO", - "Win32_System_Threading", - "Win32_UI", - "Win32_UI_Shell", - "default" - ], - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ], - "name": "windows_aarch64_gnullvm", - "pkg": "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-msvc" - }, - { - "kind": null, - "target": "aarch64-uwp-windows-msvc" - } - ], - "name": "windows_aarch64_msvc", - "pkg": "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - }, - { - "kind": null, - "target": "i686-uwp-windows-gnu" - } - ], - "name": "windows_i686_gnu", - "pkg": "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-msvc" - }, - { - "kind": null, - "target": "i686-uwp-windows-msvc" - } - ], - "name": "windows_i686_msvc", - "pkg": "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-gnu" - } - ], - "name": "windows_x86_64_gnu", - "pkg": "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ], - "name": "windows_x86_64_gnullvm", - "pkg": "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-msvc" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-msvc" - } - ], - "name": "windows_x86_64_msvc", - "pkg": "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "windows-targets 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))" - } - ], - "name": "windows_aarch64_gnullvm", - "pkg": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ], - "name": "windows_aarch64_msvc", - "pkg": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))" - } - ], - "name": "windows_i686_gnu", - "pkg": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ], - "name": "windows_i686_msvc", - "pkg": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ], - "name": "windows_x86_64_gnu", - "pkg": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))" - } - ], - "name": "windows_x86_64_gnullvm", - "pkg": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ], - "name": "windows_x86_64_msvc", - "pkg": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnu 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnullvm 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_msvc 0.42.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "std" - ], - "id": "winnow 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc" - ], - "id": "zeroize 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "root": "cargo 0.70.1 (path+file://$CARGO_MANIFEST_DIR)" - }, - "target_directory": "$CARGO_MANIFEST_DIR/target", - "version": 1, - "workspace_members": [ - "cargo 0.70.1 (path+file://$CARGO_MANIFEST_DIR)" - ], - "workspace_root": "$CARGO_MANIFEST_DIR" -} diff --git a/deps_tests/snapbox_0.4.11.deps.json b/deps_tests/snapbox_0.4.11.deps.json deleted file mode 100644 index 4667b6a..0000000 --- a/deps_tests/snapbox_0.4.11.deps.json +++ /dev/null @@ -1,17485 +0,0 @@ -[ - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-query", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "colorchoice", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "owo-colors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "strip-ansi-escapes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-wincon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.", - "documentation": null, - "edition": "2021", - "features": { - "auto": [ - "dep:anstyle-query", - "dep:colorchoice", - "dep:is-terminal" - ], - "default": [ - "auto", - "wincon" - ], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstream", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "strip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/strip.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/wincon.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/stream.rs", - "test": false - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "ANSI text styling", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-prefix": "" - } - }, - "name": "anstyle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/examples/dump.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arrayvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "codegenrs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "vte_generate_state_changes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parse ANSI Style Escapes", - "documentation": null, - "edition": "2021", - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-parse", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "parselog", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/examples/parselog.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/benches/parse.rs", - "test": false - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Look up colored console capabilities", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-query", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-query", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "report", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/examples/report.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Styling legacy Windows terminals", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-wincon 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-wincon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/examples/dump.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/examples/set.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [], - "description": "Automatic cfg for Rust compiler features", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml", - "name": "autocfg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "autocfg", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "integers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "versions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "paths", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "rustflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to generate structures which behave like bitflags.\n", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/bitflags/bitflags", - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "name": "bitflags", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs", - "test": true - } - ], - "version": "1.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "features": { - "jobserver": [ - "dep:jobserver" - ], - "parallel": [ - "jobserver" - ] - }, - "homepage": "https://github.com/rust-lang/cc-rs", - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/Cargo.toml", - "name": "cc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "gcc-shim", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/bin/gcc-shim.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cxxflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cxxflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cc_env", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cc_env.rs", - "test": true - } - ], - "version": "1.0.79" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/alexcrichton/cfg-if", - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml", - "name": "cfg-if", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cfg-if", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "xcrate", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Global override of color control", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "colorchoice", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "colorchoice", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Peter " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast inspection of binary buffers to guess/determine the encoding", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/sharkdp/content_inspector", - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "encoding", - "binary", - "text", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/Cargo.toml", - "name": "content_inspector", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sharkdp/content_inspector", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "content_inspector", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "inspect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/examples/inspect.rs", - "test": false - } - ], - "version": "0.2.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.13.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "signal-hook", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Multi-producer multi-consumer channels for message passing", - "documentation": null, - "edition": "2018", - "features": { - "crossbeam-utils": [ - "dep:crossbeam-utils" - ], - "default": [ - "std" - ], - "std": [ - "crossbeam-utils/std" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel", - "id": "crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "channel", - "mpmc", - "select", - "golang", - "message" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/Cargo.toml", - "name": "crossbeam-channel", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-channel", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "stopwatch", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/stopwatch.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "fibonacci", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/fibonacci.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "matching", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/matching.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "never", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/never.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "golang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/golang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "select_macro", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select_macro.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ready", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/ready.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "iter", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/iter.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "after", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/after.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/tick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "select", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/list.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zero", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/zero.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mpsc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/mpsc.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "same_channel", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/same_channel.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "thread_locals", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/thread_locals.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "array", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/array.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "crossbeam", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/benches/crossbeam.rs", - "test": false - } - ], - "version": "0.5.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-epoch", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Concurrent work-stealing deque", - "documentation": null, - "edition": "2018", - "features": { - "crossbeam-epoch": [ - "dep:crossbeam-epoch" - ], - "crossbeam-utils": [ - "dep:crossbeam-utils" - ], - "default": [ - "std" - ], - "std": [ - "crossbeam-epoch/std", - "crossbeam-utils/std" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", - "id": "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chase-lev", - "lock-free", - "scheduler", - "scheduling" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/Cargo.toml", - "name": "crossbeam-deque", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-deque", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "injector", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/injector.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "steal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/steal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "lifo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/lifo.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "fifo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/fifo.rs", - "test": true - } - ], - "version": "0.8.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "memoffset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "scopeguard", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "loom", - "optional": true, - "path": null, - "registry": null, - "rename": "loom-crate", - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(crossbeam_loom)", - "uses_default_features": true - } - ], - "description": "Epoch-based garbage collection", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "loom": [ - "loom-crate", - "crossbeam-utils/loom" - ], - "loom-crate": [ - "dep:loom-crate" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "alloc", - "crossbeam-utils/std", - "once_cell" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", - "id": "crossbeam-epoch 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lock-free", - "rcu", - "atomic", - "garbage" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/Cargo.toml", - "name": "crossbeam-epoch", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-epoch", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "sanitize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/examples/sanitize.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "loom", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/tests/loom.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "pin", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/pin.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "defer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/defer.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "flush", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/flush.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/build.rs", - "test": false - } - ], - "version": "0.9.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "loom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(crossbeam_loom)", - "uses_default_features": true - } - ], - "description": "Utilities for concurrent programming", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "loom": [ - "dep:loom" - ], - "nightly": [], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "once_cell" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", - "id": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "scoped", - "thread", - "atomic", - "cache" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/Cargo.toml", - "name": "crossbeam-utils", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-utils", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "thread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/thread.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "atomic_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/atomic_cell.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wait_group", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/wait_group.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "parker", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/parker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cache_padded", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/cache_padded.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "sharded_lock", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/sharded_lock.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "atomic_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/benches/atomic_cell.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/build.rs", - "test": false - } - ], - "version": "0.8.11" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Kornel " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [], - "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", - "documentation": "https://docs.rs/dunce", - "edition": "2018", - "features": {}, - "homepage": "https://lib.rs/crates/dunce", - "id": "dunce 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "realpath", - "unc", - "canonicalize", - "windows", - "deunc" - ], - "license": "CC0-1.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "dunce", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/dunce", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "dunce", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.2/src/lib.rs", - "test": true - } - ], - "version": "1.0.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "homepage": null, - "id": "either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "data-structure", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "either", - "publish": null, - "readme": "README-crates.io.md", - "repository": "https://github.com/bluss/either", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "either", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs", - "test": true - } - ], - "version": "1.8.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Chris Wong " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "errno-dragonfly", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"dragonfly\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "errhandlingapi", - "minwindef", - "ntdef", - "winbase" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cross-platform interface to the `errno` variable.", - "documentation": "https://docs.rs/errno", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/Cargo.toml", - "name": "errno", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "errno", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/src/lib.rs", - "test": true - } - ], - "version": "0.2.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Michael Neumann " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Exposes errno functionality to stable Rust on DragonFlyBSD", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dragonfly" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml", - "name": "errno-dragonfly", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mneumann/errno-dragonfly-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno-dragonfly", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs", - "test": false - } - ], - "version": "0.1.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wyhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "js" - ], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "wasm-bindgen" - ], - "kind": "dev", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "A simple and fast random number generator", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/Cargo.toml", - "name": "fastrand", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "rust_version": "^1.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fastrand", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/smoke.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "char", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/char.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/benches/bench.rs", - "test": false - } - ], - "version": "1.8.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/filetime", - "id": "filetime 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "timestamp", - "mtime" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.18/Cargo.toml", - "name": "filetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "filetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.18/src/lib.rs", - "test": true - } - ], - "version": "0.2.18" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Support for matching file paths against Unix shell style patterns.\n", - "documentation": "https://docs.rs/glob/0.3.0", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/rust-lang/glob", - "id": "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/Cargo.toml", - "name": "glob", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "glob", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "glob-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/tests/glob-std.rs", - "test": true - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ahash", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bumpalo", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust port of Google's SwissTable hash map", - "documentation": null, - "edition": "2021", - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "name": "hashbrown", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "rust_version": "^1.56.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hashbrown", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "rayon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "hasher", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "insert_unique_unchecked", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs", - "test": false - } - ], - "version": "0.12.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "hermit-abi is small interface to call functions from the unikernel RustyHermit.\nIt is used to build the target `x86_64-unknown-hermit`.\n", - "documentation": "https://hermitcore.github.io/rusty-hermit/hermit_abi", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "docs": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins/rustc-dep-of-std", - "libc/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-unknown-hermit", - "features": [ - "docs" - ] - } - } - }, - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/libhermit-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/src/lib.rs", - "test": true - } - ], - "version": "0.1.19" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Hermit system calls definitions.", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/Cargo.toml", - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/rusty-hermit", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "chrono", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/tailhook/humantime", - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml", - "name": "humantime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_format.rs", - "test": false - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "jean-airoldie " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Serde support for the `humantime` crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "humantime-serde 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "humantime", - "time", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-serde-1.1.1/Cargo.toml", - "name": "humantime-serde", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jean-airoldie/humantime-serde", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime-serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-serde-1.1.1/src/lib.rs", - "test": true - } - ], - "version": "1.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "raw" - ], - "kind": "normal", - "name": "hashbrown", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fxhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A hash table with consistent order and fast iteration.", - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "features": { - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "homepage": null, - "id": "indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hashmap", - "no_std" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "indexmap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "indexmap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "macros_full_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/macros_full_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "quick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "equivalent_trait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/equivalent_trait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "faststring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/faststring.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/build.rs", - "test": false - } - ], - "version": "1.9.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "sebcrozet " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - } - ], - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "documentation": null, - "edition": "2018", - "features": { - "inaccurate": [], - "js-sys": [ - "dep:js-sys" - ], - "now": [], - "stdweb": [ - "dep:stdweb" - ], - "wasm-bindgen": [ - "js-sys", - "wasm-bindgen_rs", - "web-sys" - ], - "wasm-bindgen_rs": [ - "dep:wasm-bindgen_rs" - ], - "web-sys": [ - "dep:web-sys" - ] - }, - "homepage": null, - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "wasm" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml", - "name": "instant", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "instant", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs", - "test": true - } - ], - "version": "0.1.12" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "os", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "fs-err", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "async-std", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "net", - "os-ext" - ], - "kind": "normal", - "name": "mio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io_safety" - ], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "socket2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io-std", - "fs", - "net", - "process" - ], - "kind": "normal", - "name": "tokio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.96", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_System_IO", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A low-level I/O ownership and borrowing library", - "documentation": null, - "edition": "2018", - "features": { - "async-std": [ - "dep:async-std" - ], - "close": [ - "libc", - "windows-sys" - ], - "default": [ - "close" - ], - "fs-err": [ - "dep:fs-err" - ], - "libc": [ - "dep:libc" - ], - "mio": [ - "dep:mio" - ], - "os_pipe": [ - "dep:os_pipe" - ], - "socket2": [ - "dep:socket2" - ], - "tokio": [ - "dep:tokio" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "homepage": null, - "id": "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "io" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/Cargo.toml", - "name": "io-lifetimes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/io-lifetimes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "io-lifetimes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/build.rs", - "test": false - } - ], - "version": "1.0.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "atty", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.110", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "termios" - ], - "kind": "normal", - "name": "rustix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.36.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Test whether a given stream is a terminal", - "documentation": "http://docs.rs/is-terminal", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "is-terminal 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.4/Cargo.toml", - "name": "is-terminal", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "is-terminal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.4/src/lib.rs", - "test": true - } - ], - "version": "0.4.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Raw FFI bindings to platform libraries like libc.\n", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/libc", - "id": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "const-extern-fn", - "extra_traits" - ] - } - } - }, - "name": "libc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "const_fn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/tests/const_fn.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/build.rs", - "test": false - } - ], - "version": "0.2.139" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generated bindings for Linux's userspace API", - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "errno": [], - "general": [], - "ioctl": [], - "netlink": [], - "no_std": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [] - }, - "homepage": null, - "id": "linux-raw-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.1.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "ioctl", - "netlink" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "name": "linux-raw-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "linux-raw-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.1.4/src/lib.rs", - "test": true - } - ], - "version": "0.1.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Safe interface to memchr.", - "documentation": "https://docs.rs/memchr/", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [ - "dep:libc" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/BurntSushi/memchr", - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memchr", - "char", - "scan", - "strchr", - "string" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml", - "name": "memchr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "memchr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs", - "test": false - } - ], - "version": "2.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "offset_of functionality for Rust structs.", - "documentation": null, - "edition": "2015", - "features": { - "default": [], - "unstable_const": [] - }, - "homepage": null, - "id": "memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "mem", - "offset", - "offset_of", - "offsetof" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml", - "name": "memoffset", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Gilnaa/memoffset", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "memoffset", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs", - "test": false - } - ], - "version": "0.6.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "parsing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A byte-oriented, zero-copy, parser combinators library (fork for proposals for v8)", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc", - "memchr/std" - ], - "unstable-doc": [ - "alloc", - "std" - ] - }, - "homepage": null, - "id": "nom8 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/epage/nom8/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "nom8", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/epage/nom-experimental", - "rust_version": "^1.51.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "nom8", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "custom_error", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/custom_error.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "json", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/json.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "json_iterator", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/json_iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "iterator", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "s_expression", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/s_expression.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "string", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/string.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arithmetic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/arithmetic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arithmetic_ast", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/arithmetic_ast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "css", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/css.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "custom_errors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/custom_errors.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "float", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/float.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ini", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/ini.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ini_str", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/ini_str.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issues", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/issues.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "json", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/json.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mp4", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/mp4.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "multiline", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/multiline.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "overflow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/overflow.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "reborrow_fold", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/reborrow_fold.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "fnmut", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/fnmut.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "escaped", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/escaped.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Richard Dodd " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Takes an iterator over chars and returns a new iterator with all line endings (\\r, \\n, or \\r\\n) as \\n", - "documentation": "https://derekdreery.github.io/normalize-line-endings/normalize_line_endings/index.html", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chars", - "line", - "ending", - "normalize" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/Cargo.toml", - "name": "normalize-line-endings", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/derekdreery/normalize-line-endings", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "normalize-line-endings", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/src/lib.rs", - "test": true - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sean McArthur " - ], - "categories": [ - "hardware-support" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - } - ], - "description": "Get the number of CPUs on a machine.", - "documentation": "https://docs.rs/num_cpus", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cpu", - "cpus", - "cores" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/Cargo.toml", - "name": "num_cpus", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/seanmonstar/num_cpus", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "num_cpus", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "values", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/examples/values.rs", - "test": false - } - ], - "version": "1.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "atomic-polyfill", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "parking_lot_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Single assignment cells and lazy values.", - "documentation": "https://docs.rs/once_cell", - "edition": "2018", - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "dep:atomic-polyfill" - ], - "default": [ - "std" - ], - "parking_lot": [ - "parking_lot_core" - ], - "parking_lot_core": [ - "dep:parking_lot_core" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "homepage": null, - "id": "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazy", - "static" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "once_cell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "once_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench_acquire", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench_acquire.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench_vs_lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench_vs_lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "reentrant_init_deadlocks", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/reentrant_init_deadlocks.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "regex", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/regex.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "test_synchronization", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/test_synchronization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "it", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/tests/it.rs", - "test": true - } - ], - "version": "1.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jack O'Connor" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.62", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [ - "handleapi", - "namedpipeapi", - "processthreadsapi", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "a cross-platform library for opening OS pipes", - "documentation": "https://docs.rs/os_pipe", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "os_pipe 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "pipe", - "pipe2", - "createpipe", - "dup" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/Cargo.toml", - "name": "os_pipe", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/oconnor663/os_pipe.rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "os_pipe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "cat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/cat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "swap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/swap.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "cat_both", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/cat_both.rs", - "test": true - } - ], - "version": "1.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "documentation": "https://docs.rs/proc-macro2", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "homepage": null, - "id": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "name": "proc-macro2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "proc-macro2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "comments", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/comments.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "marker", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/marker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "features", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/features.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/build.rs", - "test": false - } - ], - "version": "1.0.43" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.40", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.52", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Quasi-quoting macro quote!(...)", - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "homepage": null, - "id": "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "quote", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "quote", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/build.rs", - "test": false - } - ], - "version": "1.0.21" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "crossbeam-deque", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "either", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rayon-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "docopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Simple work-stealing parallelism for Rust", - "documentation": "https://docs.rs/rayon/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/Cargo.toml", - "name": "rayon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rayon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "cpu_monitor", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/examples/cpu_monitor.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "clones", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/clones.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "producer_split_at", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/producer_split_at.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "named-threads", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/named-threads.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "collect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/collect.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "intersperse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/intersperse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "iter_panic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/iter_panic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "octillion", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/octillion.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "str", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/str.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issue671", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "sort-panic-safe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/sort-panic-safe.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debug", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/debug.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cross-pool", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/cross-pool.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "chars", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/chars.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issue671-unzip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671-unzip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/build.rs", - "test": false - } - ], - "version": "1.5.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "crossbeam-channel", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-deque", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "scoped-tls", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "Core APIs for Rayon", - "documentation": "https://docs.rs/rayon/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "rayon-core", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/Cargo.toml", - "name": "rayon-core", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rayon-core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "stack_overflow_crash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/stack_overflow_crash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "double_init_fail", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/double_init_fail.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "init_zero_threads", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/init_zero_threads.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "scope_join", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scope_join.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "simple_panic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/simple_panic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "scoped_threadpool", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scoped_threadpool.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/build.rs", - "test": false - } - ], - "version": "1.9.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml", - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs", - "test": true - } - ], - "version": "0.2.16" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Aaronepower " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "errhandlingapi", - "winerror", - "fileapi", - "winbase" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A safe, reliable implementation of remove_dir_all for Windows", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utility", - "filesystem", - "remove_dir", - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/Cargo.toml", - "name": "remove_dir_all", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/XAMPPRocky/remove_dir_all.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "remove_dir_all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/src/lib.rs", - "test": true - } - ], - "version": "0.5.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "normal", - "name": "io-lifetimes", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "dev", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "memoffset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serial_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "general", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": true, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "general", - "errno", - "ioctl", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ctor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.21", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls", - "documentation": "https://docs.rs/rustix", - "edition": "2018", - "features": { - "all-apis": [ - "fs", - "io_uring", - "mm", - "net", - "param", - "process", - "procfs", - "rand", - "runtime", - "termios", - "thread", - "time" - ], - "all-impls": [ - "os_pipe", - "fs-err" - ], - "alloc": [ - "dep:alloc" - ], - "cc": [ - "dep:cc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "fs": [], - "fs-err": [ - "io-lifetimes/fs-err" - ], - "io-lifetimes": [ - "dep:io-lifetimes" - ], - "io_uring": [ - "fs", - "net" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "mm": [], - "net": [], - "once_cell": [ - "dep:once_cell" - ], - "os_pipe": [ - "io-lifetimes/os_pipe" - ], - "param": [ - "fs" - ], - "process": [], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "rand": [], - "runtime": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std" - ], - "std": [ - "io-lifetimes" - ], - "termios": [], - "thread": [], - "time": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [ - "libc" - ] - }, - "homepage": null, - "id": "rustix 0.36.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "rustix", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustix", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/benches/mod.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/build.rs", - "test": false - } - ], - "version": "0.36.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/same-file", - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml", - "name": "same-file", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "same-file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_same_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_same_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_stderr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_stderr.rs", - "test": false - } - ], - "version": "1.0.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", - "documentation": "https://docs.rs/scopeguard/", - "edition": "2015", - "features": { - "default": [ - "use_std" - ], - "use_std": [] - }, - "homepage": null, - "id": "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "scope-guard", - "defer", - "panic", - "unwind" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "name": "scopeguard", - "publish": null, - "readme": null, - "repository": "https://github.com/bluss/scopeguard", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "scopeguard", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "readme", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/examples/readme.rs", - "test": false - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A generic serialization/deserialization framework", - "documentation": "https://docs.serde.rs/serde/", - "edition": "2015", - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "homepage": "https://serde.rs", - "id": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "name": "serde", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/build.rs", - "test": false - } - ], - "version": "1.0.145" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.90", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "features": { - "default": [], - "deserialize_in_place": [] - }, - "homepage": "https://serde.rs", - "id": "serde_derive 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_derive", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "proc-macro" - ], - "name": "serde_derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/build.rs", - "test": false - } - ], - "version": "1.0.145" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/serde_spanned", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "span" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "serde_spanned", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "serde_spanned", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "comex ", - "Fenhl " - ], - "categories": [ - "command-line-interface", - "parser-implementations" - ], - "default_run": null, - "dependencies": [], - "description": "Split a string into shell words, like Python's shlex.", - "documentation": null, - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "shlex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shlex-1.1.0/Cargo.toml", - "name": "shlex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/comex/rust-shlex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "shlex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shlex-1.1.0/src/lib.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Armin Ronacher ", - "Pierre-Étienne Meunier ", - "Brandon Williams " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bstr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.130", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-segmentation", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "console", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.15.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A diff library for Rust", - "documentation": null, - "edition": "2018", - "features": { - "bstr": [ - "dep:bstr" - ], - "bytes": [ - "bstr", - "text" - ], - "default": [ - "text" - ], - "inline": [ - "text" - ], - "serde": [ - "dep:serde" - ], - "text": [], - "unicode": [ - "text", - "unicode-segmentation", - "bstr/unicode" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ] - }, - "homepage": null, - "id": "similar 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "diff", - "difference", - "patience", - "compare", - "changes" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "similar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/similar", - "rust_version": "^1.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "similar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "patience", - "required-features": [ - "text", - "inline" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/patience.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/terminal.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal-inline", - "required-features": [ - "text", - "inline", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/terminal-inline.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "original-slices", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/original-slices.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "udiff", - "required-features": [ - "text", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/udiff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "close-matches", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/close-matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "large", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/large.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "serde", - "required-features": [ - "text", - "serde" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/serde.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "nonstring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/nonstring.rs", - "test": false - } - ], - "version": "2.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "content_inspector", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "document-features", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "dunce", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "escargot", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ignore", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libtest-mimic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "normalize-line-endings", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "inline" - ], - "kind": "normal", - "name": "similar", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "snapbox-macros", - "optional": false, - "path": "$CARGO_MANIFEST_DIR-macros", - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wait-timeout", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.137", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "cmd": [ - "dep:os_pipe", - "dep:wait-timeout", - "dep:libc", - "dep:windows-sys" - ], - "color": [ - "dep:anstream", - "snapbox-macros/color" - ], - "color-auto": [ - "color" - ], - "debug": [ - "snapbox-macros/debug", - "dep:backtrace" - ], - "default": [ - "color-auto", - "diff" - ], - "detect-encoding": [ - "dep:content_inspector" - ], - "diff": [ - "dep:similar" - ], - "document-features": [ - "dep:document-features" - ], - "examples": [ - "dep:escargot" - ], - "harness": [ - "dep:libtest-mimic", - "dep:ignore" - ], - "json": [ - "structured-data", - "dep:serde_json" - ], - "path": [ - "dep:tempfile", - "dep:walkdir", - "dep:dunce", - "detect-encoding", - "dep:filetime" - ], - "structured-data": [ - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "snapbox", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "^1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "snap-fixture", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/bin/snap-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "snap-example-fixture", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/examples/snap-example-fixture.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "cmd", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/cmd.rs", - "test": true - } - ], - "version": "0.4.11" - }, - "source": "Local" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "color": [ - "dep:anstream" - ], - "debug": [], - "default": [] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR-macros/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "snapbox-macros", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "^1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox-macros", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR-macros/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - "source": "Local" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2018", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_should_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_expr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_asyncness", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_grouping", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_pat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_round_trip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_visibility", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_iterators", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_meta", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_item", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_shebang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_stmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_derive_input", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_generics", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_attribute", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_lit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_precedence", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zzz_stable", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ty", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_receiver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_token_trees", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/benches/file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/build.rs", - "test": false - } - ], - "version": "1.0.99" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "fastrand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "remove_dir_all", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [ - "fileapi", - "handleapi", - "winbase" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A library for managing temporary files and directories.", - "documentation": "https://docs.rs/tempfile", - "edition": "2018", - "features": { - "nightly": [] - }, - "homepage": "http://stebalien.com/projects/tempfile-rs", - "id": "tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/Cargo.toml", - "name": "tempfile", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "namedtempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/namedtempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "spooled", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/spooled.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempdir.rs", - "test": true - } - ], - "version": "3.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A TOML-compatible datetime type", - "documentation": "https://docs.rs/toml_datetime", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml_datetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_datetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "indexmap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "max_inline" - ], - "kind": "normal", - "name": "kstring", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "nom8", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "serde_spanned", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml_datetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libtest-mimic", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.91", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "harness" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-data", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Yet another format-preserving TOML parser.", - "documentation": "https://docs.rs/toml_edit", - "edition": "2021", - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "homepage": null, - "id": "toml_edit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-name": "v{{version}}" - } - }, - "name": "toml_edit", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/ordian/toml_edit", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_edit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "visit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/examples/visit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "invalid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/invalid.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/encoder.rs", - "test": true - } - ], - "version": "0.19.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Ed Page " - ], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "escargot", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "humantime-serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "preserve_order" - ], - "kind": "normal", - "name": "schemars", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "shlex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "cmd" - ], - "kind": "normal", - "name": "snapbox", - "optional": false, - "path": "$CARGO_MANIFEST_DIR", - "registry": null, - "rename": null, - "req": "^0.4.11", - "source": null, - "target": null, - "uses_default_features": false - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "toml_edit", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing for a herd of CLI tests", - "documentation": "http://docs.rs/trycmd/", - "edition": "2021", - "features": { - "color": [ - "snapbox/color", - "dep:anstream" - ], - "color-auto": [ - "snapbox/color-auto" - ], - "debug": [ - "snapbox/debug" - ], - "default": [ - "color-auto", - "filesystem", - "diff" - ], - "diff": [ - "snapbox/diff" - ], - "escargot": [ - "dep:escargot" - ], - "examples": [ - "snapbox/examples" - ], - "filesystem": [ - "snapbox/path" - ], - "schema": [ - "dep:schemars", - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd", - "id": "trycmd 0.14.16 (path+file://$HOME/gh/assert-rs/trycmd)", - "keywords": [ - "cli", - "test", - "assert", - "command", - "duct" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/gh/assert-rs/trycmd/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "trycmd", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd.git", - "rust_version": "^1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "trycmd", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "bin-fixture", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/src/bin/bin-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "trycmd-schema", - "required-features": [ - "schema" - ], - "src_path": "$HOME/gh/assert-rs/trycmd/src/bin/trycmd-schema.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "example-fixture", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/examples/example-fixture.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "schema", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/tests/schema.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "cli_tests", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/tests/cli_tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "example_tests", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/tests/example_tests.rs", - "test": true - } - ], - "version": "0.14.16" - }, - "source": "Local" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fst", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "roaring", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ucd-trie", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unicode-xid", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode" - ], - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "unicode-ident", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "static_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/tests/static_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compare", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/tests/compare.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/benches/xid.rs", - "test": false - } - ], - "version": "1.0.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "Table-driven UTF-8 parser", - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "features": { - "default": [], - "nightly": [] - }, - "homepage": null, - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utf8", - "parse", - "table" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/Cargo.toml", - "name": "utf8parse", - "publish": null, - "readme": null, - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "utf8parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "utf-8-demo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/tests/utf-8-demo.rs", - "test": true - } - ], - "version": "0.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "A crate to wait on a child process with a timeout specified across Unix and\nWindows platforms.\n", - "documentation": "https://docs.rs/wait-timeout", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/wait-timeout", - "id": "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/Cargo.toml", - "name": "wait-timeout", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/wait-timeout", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "wait-timeout", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "exit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/exit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "reader", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/reader.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "sleep", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/sleep.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/tests/smoke.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Recursively walk a directory.", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/walkdir", - "id": "walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/Cargo.toml", - "name": "walkdir", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "walkdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/src/lib.rs", - "test": true - } - ], - "version": "2.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "winapi-i686-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-x86_64-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - } - ], - "description": "Raw FFI bindings for all of Windows API.", - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "features": { - "accctrl": [], - "aclapi": [], - "activation": [], - "adhoc": [], - "appmgmt": [], - "audioclient": [], - "audiosessiontypes": [], - "avrt": [], - "basetsd": [], - "bcrypt": [], - "bits": [], - "bits10_1": [], - "bits1_5": [], - "bits2_0": [], - "bits2_5": [], - "bits3_0": [], - "bits4_0": [], - "bits5_0": [], - "bitscfg": [], - "bitsmsg": [], - "bluetoothapis": [], - "bluetoothleapis": [], - "bthdef": [], - "bthioctl": [], - "bthledef": [], - "bthsdpdef": [], - "bugcodes": [], - "cderr": [], - "cfg": [], - "cfgmgr32": [], - "cguid": [], - "combaseapi": [], - "coml2api": [], - "commapi": [], - "commctrl": [], - "commdlg": [], - "commoncontrols": [], - "consoleapi": [], - "corecrt": [], - "corsym": [], - "d2d1": [], - "d2d1_1": [], - "d2d1_2": [], - "d2d1_3": [], - "d2d1effectauthor": [], - "d2d1effects": [], - "d2d1effects_1": [], - "d2d1effects_2": [], - "d2d1svg": [], - "d2dbasetypes": [], - "d3d": [], - "d3d10": [], - "d3d10_1": [], - "d3d10_1shader": [], - "d3d10effect": [], - "d3d10misc": [], - "d3d10sdklayers": [], - "d3d10shader": [], - "d3d11": [], - "d3d11_1": [], - "d3d11_2": [], - "d3d11_3": [], - "d3d11_4": [], - "d3d11on12": [], - "d3d11sdklayers": [], - "d3d11shader": [], - "d3d11tokenizedprogramformat": [], - "d3d12": [], - "d3d12sdklayers": [], - "d3d12shader": [], - "d3d9": [], - "d3d9caps": [], - "d3d9types": [], - "d3dcommon": [], - "d3dcompiler": [], - "d3dcsx": [], - "d3dkmdt": [], - "d3dkmthk": [], - "d3dukmdt": [], - "d3dx10core": [], - "d3dx10math": [], - "d3dx10mesh": [], - "datetimeapi": [], - "davclnt": [], - "dbghelp": [], - "dbt": [], - "dcommon": [], - "dcomp": [], - "dcompanimation": [], - "dcomptypes": [], - "dde": [], - "ddraw": [], - "ddrawi": [], - "ddrawint": [], - "debug": [ - "impl-debug" - ], - "debugapi": [], - "devguid": [], - "devicetopology": [], - "devpkey": [], - "devpropdef": [], - "dinput": [], - "dinputd": [], - "dispex": [], - "dmksctl": [], - "dmusicc": [], - "docobj": [], - "documenttarget": [], - "dot1x": [], - "dpa_dsa": [], - "dpapi": [], - "dsgetdc": [], - "dsound": [], - "dsrole": [], - "dvp": [], - "dwmapi": [], - "dwrite": [], - "dwrite_1": [], - "dwrite_2": [], - "dwrite_3": [], - "dxdiag": [], - "dxfile": [], - "dxgi": [], - "dxgi1_2": [], - "dxgi1_3": [], - "dxgi1_4": [], - "dxgi1_5": [], - "dxgi1_6": [], - "dxgidebug": [], - "dxgiformat": [], - "dxgitype": [], - "dxva2api": [], - "dxvahd": [], - "eaptypes": [], - "enclaveapi": [], - "endpointvolume": [], - "errhandlingapi": [], - "everything": [], - "evntcons": [], - "evntprov": [], - "evntrace": [], - "excpt": [], - "exdisp": [], - "fibersapi": [], - "fileapi": [], - "functiondiscoverykeys_devpkey": [], - "gl-gl": [], - "guiddef": [], - "handleapi": [], - "heapapi": [], - "hidclass": [], - "hidpi": [], - "hidsdi": [], - "hidusage": [], - "highlevelmonitorconfigurationapi": [], - "hstring": [], - "http": [], - "ifdef": [], - "ifmib": [], - "imm": [], - "impl-debug": [], - "impl-default": [], - "in6addr": [], - "inaddr": [], - "inspectable": [], - "interlockedapi": [], - "intsafe": [], - "ioapiset": [], - "ipexport": [], - "iphlpapi": [], - "ipifcons": [], - "ipmib": [], - "iprtrmib": [], - "iptypes": [], - "jobapi": [], - "jobapi2": [], - "knownfolders": [], - "ks": [], - "ksmedia": [], - "ktmtypes": [], - "ktmw32": [], - "l2cmn": [], - "libloaderapi": [], - "limits": [], - "lmaccess": [], - "lmalert": [], - "lmapibuf": [], - "lmat": [], - "lmcons": [], - "lmdfs": [], - "lmerrlog": [], - "lmjoin": [], - "lmmsg": [], - "lmremutl": [], - "lmrepl": [], - "lmserver": [], - "lmshare": [], - "lmstats": [], - "lmsvc": [], - "lmuse": [], - "lmwksta": [], - "lowlevelmonitorconfigurationapi": [], - "lsalookup": [], - "memoryapi": [], - "minschannel": [], - "minwinbase": [], - "minwindef": [], - "mmdeviceapi": [], - "mmeapi": [], - "mmreg": [], - "mmsystem": [], - "mprapidef": [], - "msaatext": [], - "mscat": [], - "mschapp": [], - "mssip": [], - "mstcpip": [], - "mswsock": [], - "mswsockdef": [], - "namedpipeapi": [], - "namespaceapi": [], - "nb30": [], - "ncrypt": [], - "netioapi": [], - "nldef": [], - "ntddndis": [], - "ntddscsi": [], - "ntddser": [], - "ntdef": [], - "ntlsa": [], - "ntsecapi": [], - "ntstatus": [], - "oaidl": [], - "objbase": [], - "objidl": [], - "objidlbase": [], - "ocidl": [], - "ole2": [], - "oleauto": [], - "olectl": [], - "oleidl": [], - "opmapi": [], - "pdh": [], - "perflib": [], - "physicalmonitorenumerationapi": [], - "playsoundapi": [], - "portabledevice": [], - "portabledeviceapi": [], - "portabledevicetypes": [], - "powerbase": [], - "powersetting": [], - "powrprof": [], - "processenv": [], - "processsnapshot": [], - "processthreadsapi": [], - "processtopologyapi": [], - "profileapi": [], - "propidl": [], - "propkey": [], - "propkeydef": [], - "propsys": [], - "prsht": [], - "psapi": [], - "qos": [], - "realtimeapiset": [], - "reason": [], - "restartmanager": [], - "restrictederrorinfo": [], - "rmxfguid": [], - "roapi": [], - "robuffer": [], - "roerrorapi": [], - "rpc": [], - "rpcdce": [], - "rpcndr": [], - "rtinfo": [], - "sapi": [], - "sapi51": [], - "sapi53": [], - "sapiddk": [], - "sapiddk51": [], - "schannel": [], - "sddl": [], - "securityappcontainer": [], - "securitybaseapi": [], - "servprov": [], - "setupapi": [], - "shellapi": [], - "shellscalingapi": [], - "shlobj": [], - "shobjidl": [], - "shobjidl_core": [], - "shtypes": [], - "softpub": [], - "spapidef": [], - "spellcheck": [], - "sporder": [], - "sql": [], - "sqlext": [], - "sqltypes": [], - "sqlucode": [], - "sspi": [], - "std": [], - "stralign": [], - "stringapiset": [], - "strmif": [], - "subauth": [], - "synchapi": [], - "sysinfoapi": [], - "systemtopologyapi": [], - "taskschd": [], - "tcpestats": [], - "tcpmib": [], - "textstor": [], - "threadpoolapiset": [], - "threadpoollegacyapiset": [], - "timeapi": [], - "timezoneapi": [], - "tlhelp32": [], - "transportsettingcommon": [], - "tvout": [], - "udpmib": [], - "unknwnbase": [], - "urlhist": [], - "urlmon": [], - "usb": [], - "usbioctl": [], - "usbiodef": [], - "usbscan": [], - "usbspec": [], - "userenv": [], - "usp10": [], - "utilapiset": [], - "uxtheme": [], - "vadefs": [], - "vcruntime": [], - "vsbackup": [], - "vss": [], - "vsserror": [], - "vswriter": [], - "wbemads": [], - "wbemcli": [], - "wbemdisp": [], - "wbemprov": [], - "wbemtran": [], - "wct": [], - "werapi": [], - "winbase": [], - "wincodec": [], - "wincodecsdk": [], - "wincon": [], - "wincontypes": [], - "wincred": [], - "wincrypt": [], - "windef": [], - "windot11": [], - "windowsceip": [], - "windowsx": [], - "winefs": [], - "winerror": [], - "winevt": [], - "wingdi": [], - "winhttp": [], - "wininet": [], - "winineti": [], - "winioctl": [], - "winnetwk": [], - "winnls": [], - "winnt": [], - "winreg": [], - "winsafer": [], - "winscard": [], - "winsmcrd": [], - "winsock2": [], - "winspool": [], - "winstring": [], - "winsvc": [], - "wintrust": [], - "winusb": [], - "winusbio": [], - "winuser": [], - "winver": [], - "wlanapi": [], - "wlanihv": [], - "wlanihvtypes": [], - "wlantypes": [], - "wlclient": [], - "wmistr": [], - "wnnc": [], - "wow64apiset": [], - "wpdmtpextensions": [], - "ws2bth": [], - "ws2def": [], - "ws2ipdef": [], - "ws2spi": [], - "ws2tcpip": [], - "wtsapi32": [], - "wtypes": [], - "wtypesbase": [], - "xinput": [] - }, - "homepage": null, - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "features": [ - "everything", - "impl-debug", - "impl-default" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs", - "test": false - } - ], - "version": "0.3.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-i686-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-i686-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std", - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A dumping ground for high level safe wrappers over winapi.", - "documentation": "https://docs.rs/winapi-util", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/winapi-util", - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "winapi", - "util", - "win" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi-util", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "winapi-util", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-x86_64-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-x86_64-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_AI": [ - "Win32" - ], - "Win32_AI_MachineLearning": [ - "Win32_AI" - ], - "Win32_AI_MachineLearning_DirectML": [ - "Win32_AI_MachineLearning" - ], - "Win32_AI_MachineLearning_WinML": [ - "Win32_AI_MachineLearning" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_CompositionSwapchain": [ - "Win32_Graphics" - ], - "Win32_Graphics_DXCore": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D_Common": [ - "Win32_Graphics_Direct2D" - ], - "Win32_Graphics_Direct3D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D10": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D_Dxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_Direct3D_Fxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_DirectComposition": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectDraw": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectManipulation": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectWrite": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi_Common": [ - "Win32_Graphics_Dxgi" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging_D2D": [ - "Win32_Graphics_Imaging" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectSound": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DirectShow": [ - "Win32_Media" - ], - "Win32_Media_DirectShow_Xml": [ - "Win32_Media_DirectShow" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaFoundation": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_PictureAcquisition": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_SideShow": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_TransactionServer": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WinRT": [ - "Win32_System" - ], - "Win32_System_WinRT_AllJoyn": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Composition": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_CoreInputView": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Direct3D11": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Display": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics_Capture": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Direct2D": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Imaging": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Holographic": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Isolation": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_ML": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Media": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Pdf": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Printing": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Shell": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Storage": [ - "Win32_System_WinRT" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_UI_Xaml": [ - "Win32_UI" - ], - "Win32_UI_Xaml_Diagnostics": [ - "Win32_UI_Xaml" - ], - "default": [], - "deprecated": [] - }, - "homepage": null, - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs", - "test": true - } - ], - "version": "0.42.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows_raw_dylib))", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/src/lib.rs", - "test": true - } - ], - "version": "0.45.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Wdk": [], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ClrProfiling": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_ActiveScript": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Code gen support for the windows crate", - "documentation": "https://microsoft.github.io/windows-docs-rs/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.1/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.1/src/lib.rs", - "test": true - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - } -] diff --git a/deps_tests/snapbox_0.4.11.deps_no_dev.json b/deps_tests/snapbox_0.4.11.deps_no_dev.json deleted file mode 100644 index 4667b6a..0000000 --- a/deps_tests/snapbox_0.4.11.deps_no_dev.json +++ /dev/null @@ -1,17485 +0,0 @@ -[ - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-query", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "colorchoice", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "is-terminal", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "owo-colors", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "strip-ansi-escapes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle-wincon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.", - "documentation": null, - "edition": "2021", - "features": { - "auto": [ - "dep:anstyle-query", - "dep:colorchoice", - "dep:is-terminal" - ], - "default": [ - "auto", - "wincon" - ], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstream", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "strip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/strip.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/wincon.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/stream.rs", - "test": false - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "ANSI text styling", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-prefix": "" - } - }, - "name": "anstyle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/examples/dump.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "arrayvec", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "utf8parse", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "codegenrs", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "vte_generate_state_changes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parse ANSI Style Escapes", - "documentation": null, - "edition": "2021", - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-parse", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "parselog", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/examples/parselog.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/benches/parse.rs", - "test": false - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Look up colored console capabilities", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-query", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-query", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "report", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/examples/report.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Styling legacy Windows terminals", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-wincon 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-wincon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-wincon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/examples/dump.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/examples/set.rs", - "test": false - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [], - "description": "Automatic cfg for Rust compiler features", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml", - "name": "autocfg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "autocfg", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "integers", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "traits", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "versions", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "paths", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "rustflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to generate structures which behave like bitflags.\n", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/bitflags/bitflags", - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "name": "bitflags", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs", - "test": true - } - ], - "version": "1.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "jobserver", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "features": { - "jobserver": [ - "dep:jobserver" - ], - "parallel": [ - "jobserver" - ] - }, - "homepage": "https://github.com/rust-lang/cc-rs", - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/Cargo.toml", - "name": "cc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "gcc-shim", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/bin/gcc-shim.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cxxflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cxxflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cflags", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cc_env", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cc_env.rs", - "test": true - } - ], - "version": "1.0.79" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/alexcrichton/cfg-if", - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml", - "name": "cfg-if", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cfg-if", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "xcrate", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Global override of color control", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "colorchoice", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "^1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "colorchoice", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Peter " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast inspection of binary buffers to guess/determine the encoding", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/sharkdp/content_inspector", - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "encoding", - "binary", - "text", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/Cargo.toml", - "name": "content_inspector", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sharkdp/content_inspector", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "content_inspector", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "inspect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/examples/inspect.rs", - "test": false - } - ], - "version": "0.2.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.13.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "signal-hook", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Multi-producer multi-consumer channels for message passing", - "documentation": null, - "edition": "2018", - "features": { - "crossbeam-utils": [ - "dep:crossbeam-utils" - ], - "default": [ - "std" - ], - "std": [ - "crossbeam-utils/std" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel", - "id": "crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "channel", - "mpmc", - "select", - "golang", - "message" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/Cargo.toml", - "name": "crossbeam-channel", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-channel", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "stopwatch", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/stopwatch.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "fibonacci", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/fibonacci.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "matching", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/matching.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "never", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/never.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "golang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/golang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "select_macro", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select_macro.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ready", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/ready.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "iter", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/iter.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "after", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/after.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/tick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "select", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "list", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/list.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zero", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/zero.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mpsc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/mpsc.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "same_channel", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/same_channel.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "thread_locals", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/thread_locals.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "array", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/array.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "crossbeam", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/benches/crossbeam.rs", - "test": false - } - ], - "version": "0.5.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-epoch", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Concurrent work-stealing deque", - "documentation": null, - "edition": "2018", - "features": { - "crossbeam-epoch": [ - "dep:crossbeam-epoch" - ], - "crossbeam-utils": [ - "dep:crossbeam-utils" - ], - "default": [ - "std" - ], - "std": [ - "crossbeam-epoch/std", - "crossbeam-utils/std" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", - "id": "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chase-lev", - "lock-free", - "scheduler", - "scheduling" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/Cargo.toml", - "name": "crossbeam-deque", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-deque", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "injector", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/injector.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "steal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/steal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "lifo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/lifo.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "fifo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/fifo.rs", - "test": true - } - ], - "version": "0.8.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "memoffset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "scopeguard", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "loom", - "optional": true, - "path": null, - "registry": null, - "rename": "loom-crate", - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(crossbeam_loom)", - "uses_default_features": true - } - ], - "description": "Epoch-based garbage collection", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "loom": [ - "loom-crate", - "crossbeam-utils/loom" - ], - "loom-crate": [ - "dep:loom-crate" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "alloc", - "crossbeam-utils/std", - "once_cell" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", - "id": "crossbeam-epoch 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lock-free", - "rcu", - "atomic", - "garbage" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/Cargo.toml", - "name": "crossbeam-epoch", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-epoch", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "sanitize", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/examples/sanitize.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "loom", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/tests/loom.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "pin", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/pin.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "defer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/defer.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "flush", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/flush.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/build.rs", - "test": false - } - ], - "version": "0.9.10" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "loom", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(crossbeam_loom)", - "uses_default_features": true - } - ], - "description": "Utilities for concurrent programming", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "loom": [ - "dep:loom" - ], - "nightly": [], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "once_cell" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", - "id": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "scoped", - "thread", - "atomic", - "cache" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/Cargo.toml", - "name": "crossbeam-utils", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "^1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-utils", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "thread", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/thread.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "atomic_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/atomic_cell.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wait_group", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/wait_group.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "parker", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/parker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cache_padded", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/cache_padded.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "sharded_lock", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/sharded_lock.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "atomic_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/benches/atomic_cell.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/build.rs", - "test": false - } - ], - "version": "0.8.11" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Kornel " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [], - "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", - "documentation": "https://docs.rs/dunce", - "edition": "2018", - "features": {}, - "homepage": "https://lib.rs/crates/dunce", - "id": "dunce 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "realpath", - "unc", - "canonicalize", - "windows", - "deunc" - ], - "license": "CC0-1.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "dunce", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/dunce", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "dunce", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.2/src/lib.rs", - "test": true - } - ], - "version": "1.0.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "homepage": null, - "id": "either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "data-structure", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "either", - "publish": null, - "readme": "README-crates.io.md", - "repository": "https://github.com/bluss/either", - "rust_version": "^1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "either", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs", - "test": true - } - ], - "version": "1.8.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Chris Wong " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "errno-dragonfly", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"dragonfly\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "errhandlingapi", - "minwindef", - "ntdef", - "winbase" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cross-platform interface to the `errno` variable.", - "documentation": "https://docs.rs/errno", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/Cargo.toml", - "name": "errno", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "errno", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/src/lib.rs", - "test": true - } - ], - "version": "0.2.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Michael Neumann " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Exposes errno functionality to stable Rust on DragonFlyBSD", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dragonfly" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml", - "name": "errno-dragonfly", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mneumann/errno-dragonfly-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno-dragonfly", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs", - "test": false - } - ], - "version": "0.1.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wyhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "js" - ], - "kind": "dev", - "name": "getrandom", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "wasm-bindgen" - ], - "kind": "dev", - "name": "instant", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "A simple and fast random number generator", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/Cargo.toml", - "name": "fastrand", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "rust_version": "^1.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fastrand", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/smoke.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "char", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/char.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/benches/bench.rs", - "test": false - } - ], - "version": "1.8.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/filetime", - "id": "filetime 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "timestamp", - "mtime" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.18/Cargo.toml", - "name": "filetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "filetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.18/src/lib.rs", - "test": true - } - ], - "version": "0.2.18" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Support for matching file paths against Unix shell style patterns.\n", - "documentation": "https://docs.rs/glob/0.3.0", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/rust-lang/glob", - "id": "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/Cargo.toml", - "name": "glob", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "glob", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "glob-std", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/tests/glob-std.rs", - "test": true - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "ahash", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bumpalo", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust port of Google's SwissTable hash map", - "documentation": null, - "edition": "2021", - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "name": "hashbrown", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "rust_version": "^1.56.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hashbrown", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "rayon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "hasher", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "insert_unique_unchecked", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs", - "test": false - } - ], - "version": "0.12.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "hermit-abi is small interface to call functions from the unikernel RustyHermit.\nIt is used to build the target `x86_64-unknown-hermit`.\n", - "documentation": "https://hermitcore.github.io/rusty-hermit/hermit_abi", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "docs": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins/rustc-dep-of-std", - "libc/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-unknown-hermit", - "features": [ - "docs" - ] - } - } - }, - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/libhermit-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/src/lib.rs", - "test": true - } - ], - "version": "0.1.19" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Hermit system calls definitions.", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/Cargo.toml", - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/rusty-hermit", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "chrono", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/tailhook/humantime", - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml", - "name": "humantime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_format", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_format.rs", - "test": false - } - ], - "version": "2.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "jean-airoldie " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Serde support for the `humantime` crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "humantime-serde 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "humantime", - "time", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-serde-1.1.1/Cargo.toml", - "name": "humantime-serde", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jean-airoldie/humantime-serde", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime-serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-serde-1.1.1/src/lib.rs", - "test": true - } - ], - "version": "1.1.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "raw" - ], - "kind": "normal", - "name": "hashbrown", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-rayon", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fxhash", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "itertools", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A hash table with consistent order and fast iteration.", - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "features": { - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "homepage": null, - "id": "indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hashmap", - "no_std" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "indexmap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "rust_version": "^1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "indexmap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "macros_full_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/macros_full_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "quick", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "equivalent_trait", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/equivalent_trait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "faststring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/faststring.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/build.rs", - "test": false - } - ], - "version": "1.9.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "sebcrozet " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "js-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "stdweb", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wasm-bindgen", - "optional": true, - "path": null, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": "normal", - "name": "web-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - } - ], - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "documentation": null, - "edition": "2018", - "features": { - "inaccurate": [], - "js-sys": [ - "dep:js-sys" - ], - "now": [], - "stdweb": [ - "dep:stdweb" - ], - "wasm-bindgen": [ - "js-sys", - "wasm-bindgen_rs", - "web-sys" - ], - "wasm-bindgen_rs": [ - "dep:wasm-bindgen_rs" - ], - "web-sys": [ - "dep:web-sys" - ] - }, - "homepage": null, - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "wasm" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml", - "name": "instant", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "instant", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs", - "test": true - } - ], - "version": "0.1.12" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "os", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "fs-err", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "async-std", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "net", - "os-ext" - ], - "kind": "normal", - "name": "mio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io_safety" - ], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "socket2", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io-std", - "fs", - "net", - "process" - ], - "kind": "normal", - "name": "tokio", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.96", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_System_IO", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A low-level I/O ownership and borrowing library", - "documentation": null, - "edition": "2018", - "features": { - "async-std": [ - "dep:async-std" - ], - "close": [ - "libc", - "windows-sys" - ], - "default": [ - "close" - ], - "fs-err": [ - "dep:fs-err" - ], - "libc": [ - "dep:libc" - ], - "mio": [ - "dep:mio" - ], - "os_pipe": [ - "dep:os_pipe" - ], - "socket2": [ - "dep:socket2" - ], - "tokio": [ - "dep:tokio" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "homepage": null, - "id": "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "io" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/Cargo.toml", - "name": "io-lifetimes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/io-lifetimes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "io-lifetimes", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/build.rs", - "test": false - } - ], - "version": "1.0.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "atty", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.110", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "termios" - ], - "kind": "normal", - "name": "rustix", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.36.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Test whether a given stream is a terminal", - "documentation": "http://docs.rs/is-terminal", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "is-terminal 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.4/Cargo.toml", - "name": "is-terminal", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "is-terminal", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.4/src/lib.rs", - "test": true - } - ], - "version": "0.4.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Raw FFI bindings to platform libraries like libc.\n", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/libc", - "id": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "const-extern-fn", - "extra_traits" - ] - } - } - }, - "name": "libc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "const_fn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/tests/const_fn.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/build.rs", - "test": false - } - ], - "version": "0.2.139" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generated bindings for Linux's userspace API", - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "errno": [], - "general": [], - "ioctl": [], - "netlink": [], - "no_std": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [] - }, - "homepage": null, - "id": "linux-raw-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.1.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "ioctl", - "netlink" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "name": "linux-raw-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "linux-raw-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.1.4/src/lib.rs", - "test": true - } - ], - "version": "0.1.4" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Safe interface to memchr.", - "documentation": "https://docs.rs/memchr/", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [ - "dep:libc" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/BurntSushi/memchr", - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memchr", - "char", - "scan", - "strchr", - "string" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml", - "name": "memchr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "memchr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs", - "test": false - } - ], - "version": "2.5.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "offset_of functionality for Rust structs.", - "documentation": null, - "edition": "2015", - "features": { - "default": [], - "unstable_const": [] - }, - "homepage": null, - "id": "memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "mem", - "offset", - "offset_of", - "offsetof" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml", - "name": "memoffset", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Gilnaa/memoffset", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "memoffset", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs", - "test": false - } - ], - "version": "0.6.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "parsing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "memchr", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A byte-oriented, zero-copy, parser combinators library (fork for proposals for v8)", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc", - "memchr/std" - ], - "unstable-doc": [ - "alloc", - "std" - ] - }, - "homepage": null, - "id": "nom8 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/epage/nom8/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "nom8", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/epage/nom-experimental", - "rust_version": "^1.51.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "nom8", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "custom_error", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/custom_error.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "json", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/json.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "json_iterator", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/json_iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "iterator", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "s_expression", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/s_expression.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "string", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/string.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arithmetic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/arithmetic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arithmetic_ast", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/arithmetic_ast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "css", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/css.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "custom_errors", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/custom_errors.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "float", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/float.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ini", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/ini.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ini_str", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/ini_str.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issues", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/issues.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "json", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/json.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mp4", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/mp4.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "multiline", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/multiline.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "overflow", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/overflow.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "reborrow_fold", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/reborrow_fold.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "fnmut", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/fnmut.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "escaped", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/escaped.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Richard Dodd " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Takes an iterator over chars and returns a new iterator with all line endings (\\r, \\n, or \\r\\n) as \\n", - "documentation": "https://derekdreery.github.io/normalize-line-endings/normalize_line_endings/index.html", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chars", - "line", - "ending", - "normalize" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/Cargo.toml", - "name": "normalize-line-endings", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/derekdreery/normalize-line-endings", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "normalize-line-endings", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/src/lib.rs", - "test": true - } - ], - "version": "0.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Sean McArthur " - ], - "categories": [ - "hardware-support" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "hermit-abi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - } - ], - "description": "Get the number of CPUs on a machine.", - "documentation": "https://docs.rs/num_cpus", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cpu", - "cpus", - "cores" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/Cargo.toml", - "name": "num_cpus", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/seanmonstar/num_cpus", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "num_cpus", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "values", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/examples/values.rs", - "test": false - } - ], - "version": "1.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "atomic-polyfill", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "parking_lot_core", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Single assignment cells and lazy values.", - "documentation": "https://docs.rs/once_cell", - "edition": "2018", - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "dep:atomic-polyfill" - ], - "default": [ - "std" - ], - "parking_lot": [ - "parking_lot_core" - ], - "parking_lot_core": [ - "dep:parking_lot_core" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "homepage": null, - "id": "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazy", - "static" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "once_cell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "once_cell", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench_acquire", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench_acquire.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench_vs_lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench_vs_lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "reentrant_init_deadlocks", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/reentrant_init_deadlocks.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "regex", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/regex.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "test_synchronization", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/test_synchronization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "it", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/tests/it.rs", - "test": true - } - ], - "version": "1.13.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jack O'Connor" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.62", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [ - "handleapi", - "namedpipeapi", - "processthreadsapi", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "a cross-platform library for opening OS pipes", - "documentation": "https://docs.rs/os_pipe", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "os_pipe 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "pipe", - "pipe2", - "createpipe", - "dup" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/Cargo.toml", - "name": "os_pipe", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/oconnor663/os_pipe.rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "os_pipe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "cat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/cat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "swap", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/swap.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "cat_both", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/cat_both.rs", - "test": true - } - ], - "version": "1.0.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "documentation": "https://docs.rs/proc-macro2", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "homepage": null, - "id": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "name": "proc-macro2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "proc-macro2", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "comments", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/comments.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "marker", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/marker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "features", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/features.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/build.rs", - "test": false - } - ], - "version": "1.0.43" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.40", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.52", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Quasi-quoting macro quote!(...)", - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "homepage": null, - "id": "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "quote", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "quote", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/build.rs", - "test": false - } - ], - "version": "1.0.21" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "crossbeam-deque", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "either", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "rayon-core", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "docopt", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Simple work-stealing parallelism for Rust", - "documentation": "https://docs.rs/rayon/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/Cargo.toml", - "name": "rayon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rayon", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "cpu_monitor", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/examples/cpu_monitor.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "clones", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/clones.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "producer_split_at", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/producer_split_at.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "named-threads", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/named-threads.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "collect", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/collect.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "intersperse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/intersperse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "iter_panic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/iter_panic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "octillion", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/octillion.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "str", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/str.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issue671", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "sort-panic-safe", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/sort-panic-safe.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debug", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/debug.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cross-pool", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/cross-pool.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "chars", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/chars.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issue671-unzip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671-unzip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/build.rs", - "test": false - } - ], - "version": "1.5.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "crossbeam-channel", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-deque", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "crossbeam-utils", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "num_cpus", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "scoped-tls", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "Core APIs for Rayon", - "documentation": "https://docs.rs/rayon/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "rayon-core", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/Cargo.toml", - "name": "rayon-core", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rayon-core", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "stack_overflow_crash", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/stack_overflow_crash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "double_init_fail", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/double_init_fail.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "init_zero_threads", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/init_zero_threads.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "scope_join", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scope_join.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "simple_panic", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/simple_panic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "scoped_threadpool", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scoped_threadpool.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/build.rs", - "test": false - } - ], - "version": "1.9.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml", - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs", - "test": true - } - ], - "version": "0.2.16" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Aaronepower " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "errhandlingapi", - "winerror", - "fileapi", - "winbase" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A safe, reliable implementation of remove_dir_all for Windows", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utility", - "filesystem", - "remove_dir", - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/Cargo.toml", - "name": "remove_dir_all", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/XAMPPRocky/remove_dir_all.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "remove_dir_all", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/src/lib.rs", - "test": true - } - ], - "version": "0.5.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-alloc", - "optional": true, - "path": null, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "bitflags", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "compiler_builtins", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rustc-std-workspace-core", - "optional": true, - "path": null, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "normal", - "name": "io-lifetimes", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "itoa", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "dev", - "name": "io-lifetimes", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "memoffset", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serial_test", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^3.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "general", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": true, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "general", - "errno", - "ioctl", - "no_std" - ], - "kind": "normal", - "name": "linux-raw-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "extra_traits" - ], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "errno", - "optional": false, - "path": null, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "once_cell", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "kind": "normal", - "name": "windows-sys", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ctor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.21", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls", - "documentation": "https://docs.rs/rustix", - "edition": "2018", - "features": { - "all-apis": [ - "fs", - "io_uring", - "mm", - "net", - "param", - "process", - "procfs", - "rand", - "runtime", - "termios", - "thread", - "time" - ], - "all-impls": [ - "os_pipe", - "fs-err" - ], - "alloc": [ - "dep:alloc" - ], - "cc": [ - "dep:cc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "fs": [], - "fs-err": [ - "io-lifetimes/fs-err" - ], - "io-lifetimes": [ - "dep:io-lifetimes" - ], - "io_uring": [ - "fs", - "net" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "mm": [], - "net": [], - "once_cell": [ - "dep:once_cell" - ], - "os_pipe": [ - "io-lifetimes/os_pipe" - ], - "param": [ - "fs" - ], - "process": [], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "rand": [], - "runtime": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std" - ], - "std": [ - "io-lifetimes" - ], - "termios": [], - "thread": [], - "time": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [ - "libc" - ] - }, - "homepage": null, - "id": "rustix 0.36.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "rustix", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustix", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/benches/mod.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/build.rs", - "test": false - } - ], - "version": "0.36.8" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/same-file", - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml", - "name": "same-file", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "same-file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_same_file", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_same_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_stderr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_stderr.rs", - "test": false - } - ], - "version": "1.0.6" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "bluss" - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", - "documentation": "https://docs.rs/scopeguard/", - "edition": "2015", - "features": { - "default": [ - "use_std" - ], - "use_std": [] - }, - "homepage": null, - "id": "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "scope-guard", - "defer", - "panic", - "unwind" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "name": "scopeguard", - "publish": null, - "readme": null, - "repository": "https://github.com/bluss/scopeguard", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "scopeguard", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "readme", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/examples/readme.rs", - "test": false - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde_derive", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "=1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A generic serialization/deserialization framework", - "documentation": "https://docs.serde.rs/serde/", - "edition": "2015", - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "homepage": "https://serde.rs", - "id": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "name": "serde", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "serde", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/build.rs", - "test": false - } - ], - "version": "1.0.145" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "syn", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.90", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "features": { - "default": [], - "deserialize_in_place": [] - }, - "homepage": "https://serde.rs", - "id": "serde_derive 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_derive", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "proc-macro" - ], - "name": "serde_derive", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/build.rs", - "test": false - } - ], - "version": "1.0.145" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/serde_spanned", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "span" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "serde_spanned", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "serde_spanned", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "comex ", - "Fenhl " - ], - "categories": [ - "command-line-interface", - "parser-implementations" - ], - "default_run": null, - "dependencies": [], - "description": "Split a string into shell words, like Python's shlex.", - "documentation": null, - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "shlex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shlex-1.1.0/Cargo.toml", - "name": "shlex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/comex/rust-shlex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "shlex", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shlex-1.1.0/src/lib.rs", - "test": true - } - ], - "version": "1.1.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Armin Ronacher ", - "Pierre-Étienne Meunier ", - "Brandon Williams " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "bstr", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.130", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "unicode-segmentation", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "console", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.15.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A diff library for Rust", - "documentation": null, - "edition": "2018", - "features": { - "bstr": [ - "dep:bstr" - ], - "bytes": [ - "bstr", - "text" - ], - "default": [ - "text" - ], - "inline": [ - "text" - ], - "serde": [ - "dep:serde" - ], - "text": [], - "unicode": [ - "text", - "unicode-segmentation", - "bstr/unicode" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ] - }, - "homepage": null, - "id": "similar 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "diff", - "difference", - "patience", - "compare", - "changes" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "similar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/similar", - "rust_version": "^1.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "similar", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "patience", - "required-features": [ - "text", - "inline" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/patience.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/terminal.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal-inline", - "required-features": [ - "text", - "inline", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/terminal-inline.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "original-slices", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/original-slices.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "udiff", - "required-features": [ - "text", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/udiff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "close-matches", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/close-matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "large", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/large.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "serde", - "required-features": [ - "text", - "serde" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/serde.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "nonstring", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/nonstring.rs", - "test": false - } - ], - "version": "2.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "anstyle", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "backtrace", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "content_inspector", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "document-features", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "dunce", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "escargot", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "filetime", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "ignore", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libtest-mimic", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "normalize-line-endings", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "os_pipe", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "inline" - ], - "kind": "normal", - "name": "similar", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "snapbox-macros", - "optional": false, - "path": "$CARGO_MANIFEST_DIR-macros", - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "tempfile", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "wait-timeout", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "walkdir", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.137", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation" - ], - "kind": "normal", - "name": "windows-sys", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "cmd": [ - "dep:os_pipe", - "dep:wait-timeout", - "dep:libc", - "dep:windows-sys" - ], - "color": [ - "dep:anstream", - "snapbox-macros/color" - ], - "color-auto": [ - "color" - ], - "debug": [ - "snapbox-macros/debug", - "dep:backtrace" - ], - "default": [ - "color-auto", - "diff" - ], - "detect-encoding": [ - "dep:content_inspector" - ], - "diff": [ - "dep:similar" - ], - "document-features": [ - "dep:document-features" - ], - "examples": [ - "dep:escargot" - ], - "harness": [ - "dep:libtest-mimic", - "dep:ignore" - ], - "json": [ - "structured-data", - "dep:serde_json" - ], - "path": [ - "dep:tempfile", - "dep:walkdir", - "dep:dunce", - "detect-encoding", - "dep:filetime" - ], - "structured-data": [ - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "snapbox", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "^1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "snap-fixture", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/src/bin/snap-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "snap-example-fixture", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/examples/snap-example-fixture.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "cmd", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR/tests/cmd.rs", - "test": true - } - ], - "version": "0.4.11" - }, - "source": "Local" - }, - { - "package": { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "color": [ - "dep:anstream" - ], - "debug": [], - "default": [] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR-macros/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "snapbox-macros", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "^1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox-macros", - "required-features": [], - "src_path": "$CARGO_MANIFEST_DIR-macros/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - "source": "Local" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "proc-macro2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "quote", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "normal", - "name": "unicode-ident", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2018", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syn", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_should_parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_expr", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_asyncness", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_grouping", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_path", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_pat", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_round_trip", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_visibility", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_iterators", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_meta", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_item", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_shebang", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_stmt", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_derive_input", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_generics", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_attribute", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_lit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_precedence", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zzz_stable", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ty", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_receiver", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_token_trees", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/benches/file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/build.rs", - "test": false - } - ], - "version": "1.0.99" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "cfg-if", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "fastrand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "remove_dir_all", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "redox_syscall", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [ - "fileapi", - "handleapi", - "winbase" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A library for managing temporary files and directories.", - "documentation": "https://docs.rs/tempfile", - "edition": "2018", - "features": { - "nightly": [] - }, - "homepage": "http://stebalien.com/projects/tempfile-rs", - "id": "tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/Cargo.toml", - "name": "tempfile", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "namedtempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/namedtempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempfile", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "spooled", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/spooled.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempdir.rs", - "test": true - } - ], - "version": "3.3.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A TOML-compatible datetime type", - "documentation": "https://docs.rs/toml_datetime", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml_datetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_datetime", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "indexmap", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "max_inline" - ], - "kind": "normal", - "name": "kstring", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "nom8", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "serde_spanned", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "toml_datetime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libtest-mimic", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.91", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "harness" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-data", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Yet another format-preserving TOML parser.", - "documentation": "https://docs.rs/toml_edit", - "edition": "2021", - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "homepage": null, - "id": "toml_edit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-name": "v{{version}}" - } - }, - "name": "toml_edit", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/ordian/toml_edit", - "rust_version": "^1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_edit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "visit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/examples/visit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "invalid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/invalid.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/encoder.rs", - "test": true - } - ], - "version": "0.19.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Ed Page " - ], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "anstream", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "escargot", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "glob", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "humantime", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "humantime-serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "rayon", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.5.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "preserve_order" - ], - "kind": "normal", - "name": "schemars", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "normal", - "name": "serde", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "serde_json", - "optional": true, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "shlex", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "cmd" - ], - "kind": "normal", - "name": "snapbox", - "optional": false, - "path": "$CARGO_MANIFEST_DIR", - "registry": null, - "rename": null, - "req": "^0.4.11", - "source": null, - "target": null, - "uses_default_features": false - }, - { - "features": [ - "serde" - ], - "kind": "normal", - "name": "toml_edit", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing for a herd of CLI tests", - "documentation": "http://docs.rs/trycmd/", - "edition": "2021", - "features": { - "color": [ - "snapbox/color", - "dep:anstream" - ], - "color-auto": [ - "snapbox/color-auto" - ], - "debug": [ - "snapbox/debug" - ], - "default": [ - "color-auto", - "filesystem", - "diff" - ], - "diff": [ - "snapbox/diff" - ], - "escargot": [ - "dep:escargot" - ], - "examples": [ - "snapbox/examples" - ], - "filesystem": [ - "snapbox/path" - ], - "schema": [ - "dep:schemars", - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd", - "id": "trycmd 0.14.16 (path+file://$HOME/gh/assert-rs/trycmd)", - "keywords": [ - "cli", - "test", - "assert", - "command", - "duct" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/gh/assert-rs/trycmd/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "trycmd", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd.git", - "rust_version": "^1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "trycmd", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "bin-fixture", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/src/bin/bin-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "trycmd-schema", - "required-features": [ - "schema" - ], - "src_path": "$HOME/gh/assert-rs/trycmd/src/bin/trycmd-schema.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "example-fixture", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/examples/example-fixture.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "schema", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/tests/schema.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "cli_tests", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/tests/cli_tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "example_tests", - "required-features": [], - "src_path": "$HOME/gh/assert-rs/trycmd/tests/example_tests.rs", - "test": true - } - ], - "version": "0.14.16" - }, - "source": "Local" - }, - { - "package": { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fst", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "roaring", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ucd-trie", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unicode-xid", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode" - ], - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "unicode-ident", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "rust_version": "^1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-ident", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "static_size", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/tests/static_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compare", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/tests/compare.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "xid", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/benches/xid.rs", - "test": false - } - ], - "version": "1.0.3" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "Table-driven UTF-8 parser", - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "features": { - "default": [], - "nightly": [] - }, - "homepage": null, - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utf8", - "parse", - "table" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/Cargo.toml", - "name": "utf8parse", - "publish": null, - "readme": null, - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "utf8parse", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "utf-8-demo", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/tests/utf-8-demo.rs", - "test": true - } - ], - "version": "0.2.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "libc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "A crate to wait on a child process with a timeout specified across Unix and\nWindows platforms.\n", - "documentation": "https://docs.rs/wait-timeout", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/wait-timeout", - "id": "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/Cargo.toml", - "name": "wait-timeout", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/wait-timeout", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "wait-timeout", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "exit", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/exit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "reader", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/reader.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "sleep", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/sleep.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "smoke", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/tests/smoke.rs", - "test": true - } - ], - "version": "0.2.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "same-file", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-util", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Recursively walk a directory.", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/walkdir", - "id": "walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/Cargo.toml", - "name": "walkdir", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "walkdir", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/src/lib.rs", - "test": true - } - ], - "version": "2.3.2" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "winapi-i686-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "winapi-x86_64-pc-windows-gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - } - ], - "description": "Raw FFI bindings for all of Windows API.", - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "features": { - "accctrl": [], - "aclapi": [], - "activation": [], - "adhoc": [], - "appmgmt": [], - "audioclient": [], - "audiosessiontypes": [], - "avrt": [], - "basetsd": [], - "bcrypt": [], - "bits": [], - "bits10_1": [], - "bits1_5": [], - "bits2_0": [], - "bits2_5": [], - "bits3_0": [], - "bits4_0": [], - "bits5_0": [], - "bitscfg": [], - "bitsmsg": [], - "bluetoothapis": [], - "bluetoothleapis": [], - "bthdef": [], - "bthioctl": [], - "bthledef": [], - "bthsdpdef": [], - "bugcodes": [], - "cderr": [], - "cfg": [], - "cfgmgr32": [], - "cguid": [], - "combaseapi": [], - "coml2api": [], - "commapi": [], - "commctrl": [], - "commdlg": [], - "commoncontrols": [], - "consoleapi": [], - "corecrt": [], - "corsym": [], - "d2d1": [], - "d2d1_1": [], - "d2d1_2": [], - "d2d1_3": [], - "d2d1effectauthor": [], - "d2d1effects": [], - "d2d1effects_1": [], - "d2d1effects_2": [], - "d2d1svg": [], - "d2dbasetypes": [], - "d3d": [], - "d3d10": [], - "d3d10_1": [], - "d3d10_1shader": [], - "d3d10effect": [], - "d3d10misc": [], - "d3d10sdklayers": [], - "d3d10shader": [], - "d3d11": [], - "d3d11_1": [], - "d3d11_2": [], - "d3d11_3": [], - "d3d11_4": [], - "d3d11on12": [], - "d3d11sdklayers": [], - "d3d11shader": [], - "d3d11tokenizedprogramformat": [], - "d3d12": [], - "d3d12sdklayers": [], - "d3d12shader": [], - "d3d9": [], - "d3d9caps": [], - "d3d9types": [], - "d3dcommon": [], - "d3dcompiler": [], - "d3dcsx": [], - "d3dkmdt": [], - "d3dkmthk": [], - "d3dukmdt": [], - "d3dx10core": [], - "d3dx10math": [], - "d3dx10mesh": [], - "datetimeapi": [], - "davclnt": [], - "dbghelp": [], - "dbt": [], - "dcommon": [], - "dcomp": [], - "dcompanimation": [], - "dcomptypes": [], - "dde": [], - "ddraw": [], - "ddrawi": [], - "ddrawint": [], - "debug": [ - "impl-debug" - ], - "debugapi": [], - "devguid": [], - "devicetopology": [], - "devpkey": [], - "devpropdef": [], - "dinput": [], - "dinputd": [], - "dispex": [], - "dmksctl": [], - "dmusicc": [], - "docobj": [], - "documenttarget": [], - "dot1x": [], - "dpa_dsa": [], - "dpapi": [], - "dsgetdc": [], - "dsound": [], - "dsrole": [], - "dvp": [], - "dwmapi": [], - "dwrite": [], - "dwrite_1": [], - "dwrite_2": [], - "dwrite_3": [], - "dxdiag": [], - "dxfile": [], - "dxgi": [], - "dxgi1_2": [], - "dxgi1_3": [], - "dxgi1_4": [], - "dxgi1_5": [], - "dxgi1_6": [], - "dxgidebug": [], - "dxgiformat": [], - "dxgitype": [], - "dxva2api": [], - "dxvahd": [], - "eaptypes": [], - "enclaveapi": [], - "endpointvolume": [], - "errhandlingapi": [], - "everything": [], - "evntcons": [], - "evntprov": [], - "evntrace": [], - "excpt": [], - "exdisp": [], - "fibersapi": [], - "fileapi": [], - "functiondiscoverykeys_devpkey": [], - "gl-gl": [], - "guiddef": [], - "handleapi": [], - "heapapi": [], - "hidclass": [], - "hidpi": [], - "hidsdi": [], - "hidusage": [], - "highlevelmonitorconfigurationapi": [], - "hstring": [], - "http": [], - "ifdef": [], - "ifmib": [], - "imm": [], - "impl-debug": [], - "impl-default": [], - "in6addr": [], - "inaddr": [], - "inspectable": [], - "interlockedapi": [], - "intsafe": [], - "ioapiset": [], - "ipexport": [], - "iphlpapi": [], - "ipifcons": [], - "ipmib": [], - "iprtrmib": [], - "iptypes": [], - "jobapi": [], - "jobapi2": [], - "knownfolders": [], - "ks": [], - "ksmedia": [], - "ktmtypes": [], - "ktmw32": [], - "l2cmn": [], - "libloaderapi": [], - "limits": [], - "lmaccess": [], - "lmalert": [], - "lmapibuf": [], - "lmat": [], - "lmcons": [], - "lmdfs": [], - "lmerrlog": [], - "lmjoin": [], - "lmmsg": [], - "lmremutl": [], - "lmrepl": [], - "lmserver": [], - "lmshare": [], - "lmstats": [], - "lmsvc": [], - "lmuse": [], - "lmwksta": [], - "lowlevelmonitorconfigurationapi": [], - "lsalookup": [], - "memoryapi": [], - "minschannel": [], - "minwinbase": [], - "minwindef": [], - "mmdeviceapi": [], - "mmeapi": [], - "mmreg": [], - "mmsystem": [], - "mprapidef": [], - "msaatext": [], - "mscat": [], - "mschapp": [], - "mssip": [], - "mstcpip": [], - "mswsock": [], - "mswsockdef": [], - "namedpipeapi": [], - "namespaceapi": [], - "nb30": [], - "ncrypt": [], - "netioapi": [], - "nldef": [], - "ntddndis": [], - "ntddscsi": [], - "ntddser": [], - "ntdef": [], - "ntlsa": [], - "ntsecapi": [], - "ntstatus": [], - "oaidl": [], - "objbase": [], - "objidl": [], - "objidlbase": [], - "ocidl": [], - "ole2": [], - "oleauto": [], - "olectl": [], - "oleidl": [], - "opmapi": [], - "pdh": [], - "perflib": [], - "physicalmonitorenumerationapi": [], - "playsoundapi": [], - "portabledevice": [], - "portabledeviceapi": [], - "portabledevicetypes": [], - "powerbase": [], - "powersetting": [], - "powrprof": [], - "processenv": [], - "processsnapshot": [], - "processthreadsapi": [], - "processtopologyapi": [], - "profileapi": [], - "propidl": [], - "propkey": [], - "propkeydef": [], - "propsys": [], - "prsht": [], - "psapi": [], - "qos": [], - "realtimeapiset": [], - "reason": [], - "restartmanager": [], - "restrictederrorinfo": [], - "rmxfguid": [], - "roapi": [], - "robuffer": [], - "roerrorapi": [], - "rpc": [], - "rpcdce": [], - "rpcndr": [], - "rtinfo": [], - "sapi": [], - "sapi51": [], - "sapi53": [], - "sapiddk": [], - "sapiddk51": [], - "schannel": [], - "sddl": [], - "securityappcontainer": [], - "securitybaseapi": [], - "servprov": [], - "setupapi": [], - "shellapi": [], - "shellscalingapi": [], - "shlobj": [], - "shobjidl": [], - "shobjidl_core": [], - "shtypes": [], - "softpub": [], - "spapidef": [], - "spellcheck": [], - "sporder": [], - "sql": [], - "sqlext": [], - "sqltypes": [], - "sqlucode": [], - "sspi": [], - "std": [], - "stralign": [], - "stringapiset": [], - "strmif": [], - "subauth": [], - "synchapi": [], - "sysinfoapi": [], - "systemtopologyapi": [], - "taskschd": [], - "tcpestats": [], - "tcpmib": [], - "textstor": [], - "threadpoolapiset": [], - "threadpoollegacyapiset": [], - "timeapi": [], - "timezoneapi": [], - "tlhelp32": [], - "transportsettingcommon": [], - "tvout": [], - "udpmib": [], - "unknwnbase": [], - "urlhist": [], - "urlmon": [], - "usb": [], - "usbioctl": [], - "usbiodef": [], - "usbscan": [], - "usbspec": [], - "userenv": [], - "usp10": [], - "utilapiset": [], - "uxtheme": [], - "vadefs": [], - "vcruntime": [], - "vsbackup": [], - "vss": [], - "vsserror": [], - "vswriter": [], - "wbemads": [], - "wbemcli": [], - "wbemdisp": [], - "wbemprov": [], - "wbemtran": [], - "wct": [], - "werapi": [], - "winbase": [], - "wincodec": [], - "wincodecsdk": [], - "wincon": [], - "wincontypes": [], - "wincred": [], - "wincrypt": [], - "windef": [], - "windot11": [], - "windowsceip": [], - "windowsx": [], - "winefs": [], - "winerror": [], - "winevt": [], - "wingdi": [], - "winhttp": [], - "wininet": [], - "winineti": [], - "winioctl": [], - "winnetwk": [], - "winnls": [], - "winnt": [], - "winreg": [], - "winsafer": [], - "winscard": [], - "winsmcrd": [], - "winsock2": [], - "winspool": [], - "winstring": [], - "winsvc": [], - "wintrust": [], - "winusb": [], - "winusbio": [], - "winuser": [], - "winver": [], - "wlanapi": [], - "wlanihv": [], - "wlanihvtypes": [], - "wlantypes": [], - "wlclient": [], - "wmistr": [], - "wnnc": [], - "wow64apiset": [], - "wpdmtpextensions": [], - "ws2bth": [], - "ws2def": [], - "ws2ipdef": [], - "ws2spi": [], - "ws2tcpip": [], - "wtsapi32": [], - "wtypes": [], - "wtypesbase": [], - "xinput": [] - }, - "homepage": null, - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "features": [ - "everything", - "impl-debug", - "impl-default" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs", - "test": false - } - ], - "version": "0.3.9" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-i686-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-i686-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std", - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "kind": "normal", - "name": "winapi", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A dumping ground for high level safe wrappers over winapi.", - "documentation": "https://docs.rs/winapi-util", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/winapi-util", - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "winapi", - "util", - "win" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi-util", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "winapi-util", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "name": "winapi-x86_64-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-x86_64-pc-windows-gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_AI": [ - "Win32" - ], - "Win32_AI_MachineLearning": [ - "Win32_AI" - ], - "Win32_AI_MachineLearning_DirectML": [ - "Win32_AI_MachineLearning" - ], - "Win32_AI_MachineLearning_WinML": [ - "Win32_AI_MachineLearning" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_CompositionSwapchain": [ - "Win32_Graphics" - ], - "Win32_Graphics_DXCore": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D_Common": [ - "Win32_Graphics_Direct2D" - ], - "Win32_Graphics_Direct3D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D10": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D_Dxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_Direct3D_Fxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_DirectComposition": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectDraw": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectManipulation": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectWrite": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi_Common": [ - "Win32_Graphics_Dxgi" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging_D2D": [ - "Win32_Graphics_Imaging" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectSound": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DirectShow": [ - "Win32_Media" - ], - "Win32_Media_DirectShow_Xml": [ - "Win32_Media_DirectShow" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaFoundation": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_PictureAcquisition": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_SideShow": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_TransactionServer": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WinRT": [ - "Win32_System" - ], - "Win32_System_WinRT_AllJoyn": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Composition": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_CoreInputView": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Direct3D11": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Display": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics_Capture": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Direct2D": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Imaging": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Holographic": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Isolation": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_ML": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Media": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Pdf": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Printing": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Shell": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Storage": [ - "Win32_System_WinRT" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_UI_Xaml": [ - "Win32_UI" - ], - "Win32_UI_Xaml_Diagnostics": [ - "Win32_UI_Xaml" - ], - "default": [], - "deprecated": [] - }, - "homepage": null, - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs", - "test": true - } - ], - "version": "0.42.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows_raw_dylib))", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/src/lib.rs", - "test": true - } - ], - "version": "0.45.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows-targets", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Wdk": [], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ClrProfiling": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_ActiveScript": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "^1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Code gen support for the windows crate", - "documentation": "https://microsoft.github.io/windows-docs-rs/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.1/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.1/src/lib.rs", - "test": true - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_aarch64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_i686_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnu", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_gnullvm", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": "normal", - "name": "windows_x86_64_msvc", - "optional": false, - "path": null, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/Cargo.toml", - "name": "windows-targets", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - "source": "CratesIo" - }, - { - "package": { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "required-features": [], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - "source": "CratesIo" - } -] diff --git a/deps_tests/snapbox_0.4.11.metadata.json b/deps_tests/snapbox_0.4.11.metadata.json deleted file mode 100644 index e0db05c..0000000 --- a/deps_tests/snapbox_0.4.11.metadata.json +++ /dev/null @@ -1,19073 +0,0 @@ -{ - "metadata": null, - "packages": [ - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-parse", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-query", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "colorchoice", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "is-terminal", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "utf8parse", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "owo-colors", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "strip-ansi-escapes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle-wincon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple cross platform library for writing colored text to a terminal.", - "documentation": null, - "edition": "2021", - "features": { - "auto": [ - "dep:anstyle-query", - "dep:colorchoice", - "dep:is-terminal" - ], - "default": [ - "auto", - "wincon" - ], - "wincon": [ - "dep:anstyle-wincon" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "strip", - "wincon" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstream", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "strip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/strip.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "wincon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/wincon.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "stream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstream-0.3.0/benches/stream.rs", - "test": false - } - ], - "version": "0.3.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "ANSI text styling", - "documentation": null, - "edition": "2021", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-prefix": "" - } - }, - "name": "anstyle", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-1.0.0/examples/dump.rs", - "test": false - } - ], - "version": "1.0.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "arrayvec", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "utf8parse", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "codegenrs", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "path" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "vte_generate_state_changes", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parse ANSI Style Escapes", - "documentation": null, - "edition": "2021", - "features": { - "core": [ - "dep:arrayvec" - ], - "default": [ - "utf8" - ], - "utf8": [ - "dep:utf8parse" - ] - }, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "vte" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-parse", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "parselog", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/examples/parselog.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-parse-0.2.0/benches/parse.rs", - "test": false - } - ], - "version": "0.2.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Look up colored console capabilities", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-query", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-query", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "report", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-query-1.0.0/examples/report.rs", - "test": false - } - ], - "version": "1.0.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lexopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "Win32_System_Console", - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Styling legacy Windows terminals", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": "https://github.com/rust-cli/anstyle", - "id": "anstyle-wincon 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "ansi", - "terminal", - "color", - "windows" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ], - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "anstyle-wincon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle.git", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "anstyle-wincon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "dump", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/examples/dump.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "set", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/anstyle-wincon-1.0.0/examples/set.rs", - "test": false - } - ], - "version": "1.0.0" - }, - { - "authors": [ - "Josh Stone " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [], - "description": "Automatic cfg for Rust compiler features", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "rustc", - "build", - "autoconf" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml", - "metadata": null, - "name": "autocfg", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/cuviper/autocfg", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "autocfg", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "integers", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/integers.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "traits", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/traits.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "versions", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/versions.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "paths", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/examples/paths.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "rustflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/tests/rustflags.rs", - "test": true - } - ], - "version": "1.1.0" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to generate structures which behave like bitflags.\n", - "documentation": "https://docs.rs/bitflags", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "example_generated": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/bitflags/bitflags", - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "bit", - "bitmask", - "bitflags", - "flags" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "example_generated" - ] - } - } - }, - "name": "bitflags", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bitflags/bitflags", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "bitflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/compile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "basic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/tests/basic.rs", - "test": true - } - ], - "version": "1.3.2" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "development-tools::build-utils" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "jobserver", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n", - "documentation": "https://docs.rs/cc", - "edition": "2018", - "features": { - "jobserver": [ - "dep:jobserver" - ], - "parallel": [ - "jobserver" - ] - }, - "homepage": "https://github.com/rust-lang/cc-rs", - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "build-dependencies" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/Cargo.toml", - "metadata": null, - "name": "cc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/cc-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "gcc-shim", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/src/bin/gcc-shim.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cxxflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cxxflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cflags", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cflags.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cc_env", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.79/tests/cc_env.rs", - "test": true - } - ], - "version": "1.0.79" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n", - "documentation": "https://docs.rs/cfg-if", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ] - }, - "homepage": "https://github.com/alexcrichton/cfg-if", - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml", - "metadata": null, - "name": "cfg-if", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/cfg-if", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "cfg-if", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "xcrate", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/tests/xcrate.rs", - "test": true - } - ], - "version": "1.0.0" - }, - { - "authors": [], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [], - "description": "Global override of color control", - "documentation": null, - "edition": "2021", - "features": {}, - "homepage": null, - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cli", - "color", - "no-std", - "terminal", - "ansi" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/Cargo.toml", - "metadata": { - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "colorchoice", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-cli/anstyle", - "rust_version": "1.64.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "colorchoice", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/colorchoice-1.0.0/src/lib.rs", - "test": true - } - ], - "version": "1.0.0" - }, - { - "authors": [ - "David Peter " - ], - "categories": [ - "encoding" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Fast inspection of binary buffers to guess/determine the encoding", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": "https://github.com/sharkdp/content_inspector", - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode", - "encoding", - "binary", - "text", - "library" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/Cargo.toml", - "metadata": null, - "name": "content_inspector", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sharkdp/content_inspector", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "content_inspector", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "inspect", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/content_inspector-0.2.4/examples/inspect.rs", - "test": false - } - ], - "version": "0.2.4" - }, - { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crossbeam-utils", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "num_cpus", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.13.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "signal-hook", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Multi-producer multi-consumer channels for message passing", - "documentation": null, - "edition": "2018", - "features": { - "crossbeam-utils": [ - "dep:crossbeam-utils" - ], - "default": [ - "std" - ], - "std": [ - "crossbeam-utils/std" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel", - "id": "crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "channel", - "mpmc", - "select", - "golang", - "message" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/Cargo.toml", - "metadata": null, - "name": "crossbeam-channel", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-channel", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "stopwatch", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/stopwatch.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "fibonacci", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/fibonacci.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "matching", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/examples/matching.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "never", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/never.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "golang", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/golang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "select_macro", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select_macro.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ready", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/ready.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "iter", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/iter.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "after", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/after.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tick", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/tick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "select", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/select.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "list", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/list.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zero", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/zero.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mpsc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/mpsc.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "same_channel", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/same_channel.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "thread_locals", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/thread_locals.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "array", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/tests/array.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "crossbeam", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.6/benches/crossbeam.rs", - "test": false - } - ], - "version": "0.5.6" - }, - { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crossbeam-epoch", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "crossbeam-utils", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Concurrent work-stealing deque", - "documentation": null, - "edition": "2018", - "features": { - "crossbeam-epoch": [ - "dep:crossbeam-epoch" - ], - "crossbeam-utils": [ - "dep:crossbeam-utils" - ], - "default": [ - "std" - ], - "std": [ - "crossbeam-epoch/std", - "crossbeam-utils/std" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque", - "id": "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chase-lev", - "lock-free", - "scheduler", - "scheduling" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/Cargo.toml", - "metadata": null, - "name": "crossbeam-deque", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-deque", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "injector", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/injector.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "steal", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/steal.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "lifo", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/lifo.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "fifo", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.2/tests/fifo.rs", - "test": true - } - ], - "version": "0.8.2" - }, - { - "authors": [], - "categories": [ - "concurrency", - "memory-management", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crossbeam-utils", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "memoffset", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "scopeguard", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "loom", - "optional": true, - "registry": null, - "rename": "loom-crate", - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(crossbeam_loom)", - "uses_default_features": true - } - ], - "description": "Epoch-based garbage collection", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "loom": [ - "loom-crate", - "crossbeam-utils/loom" - ], - "loom-crate": [ - "dep:loom-crate" - ], - "nightly": [ - "crossbeam-utils/nightly" - ], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "alloc", - "crossbeam-utils/std", - "once_cell" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch", - "id": "crossbeam-epoch 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lock-free", - "rcu", - "atomic", - "garbage" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/Cargo.toml", - "metadata": null, - "name": "crossbeam-epoch", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-epoch", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "sanitize", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/examples/sanitize.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "loom", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/tests/loom.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "pin", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/pin.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "defer", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/defer.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "flush", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/benches/flush.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.10/build.rs", - "test": false - } - ], - "version": "0.9.10" - }, - { - "authors": [], - "categories": [ - "algorithms", - "concurrency", - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "loom", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(crossbeam_loom)", - "uses_default_features": true - } - ], - "description": "Utilities for concurrent programming", - "documentation": null, - "edition": "2018", - "features": { - "default": [ - "std" - ], - "loom": [ - "dep:loom" - ], - "nightly": [], - "once_cell": [ - "dep:once_cell" - ], - "std": [ - "once_cell" - ] - }, - "homepage": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils", - "id": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "scoped", - "thread", - "atomic", - "cache" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/Cargo.toml", - "metadata": null, - "name": "crossbeam-utils", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/crossbeam-rs/crossbeam", - "rust_version": "1.38", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "crossbeam-utils", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "thread", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/thread.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "atomic_cell", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/atomic_cell.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wait_group", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/wait_group.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "parker", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/parker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cache_padded", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/cache_padded.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "sharded_lock", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/tests/sharded_lock.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "atomic_cell", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/benches/atomic_cell.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.11/build.rs", - "test": false - } - ], - "version": "0.8.11" - }, - { - "authors": [ - "Kornel " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [], - "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible", - "documentation": "https://docs.rs/dunce", - "edition": "2018", - "features": {}, - "homepage": "https://lib.rs/crates/dunce", - "id": "dunce 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "realpath", - "unc", - "canonicalize", - "windows", - "deunc" - ], - "license": "CC0-1.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.2/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "dunce", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.com/kornelski/dunce", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "dunce", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/dunce-1.0.2/src/lib.rs", - "test": true - } - ], - "version": "1.0.2" - }, - { - "authors": [ - "bluss" - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", - "documentation": "https://docs.rs/either/1/", - "edition": "2018", - "features": { - "default": [ - "use_std" - ], - "serde": [ - "dep:serde" - ], - "use_std": [] - }, - "homepage": null, - "id": "either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "data-structure", - "no_std" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "either", - "publish": null, - "readme": "README-crates.io.md", - "repository": "https://github.com/bluss/either", - "rust_version": "1.36", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "either", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.8.0/src/lib.rs", - "test": true - } - ], - "version": "1.8.0" - }, - { - "authors": [ - "Chris Wong " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "errno-dragonfly", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"dragonfly\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"wasi\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "errhandlingapi", - "minwindef", - "ntdef", - "winbase" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Cross-platform interface to the `errno` variable.", - "documentation": "https://docs.rs/errno", - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/Cargo.toml", - "metadata": null, - "name": "errno", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/lambda-fairy/rust-errno", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "errno", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.2.8/src/lib.rs", - "test": true - } - ], - "version": "0.2.8" - }, - { - "authors": [ - "Michael Neumann " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Exposes errno functionality to stable Rust on DragonFlyBSD", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "dragonfly" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/Cargo.toml", - "metadata": null, - "name": "errno-dragonfly", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mneumann/errno-dragonfly-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "errno-dragonfly", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-dragonfly-0.1.2/build.rs", - "test": false - } - ], - "version": "0.1.2" - }, - { - "authors": [ - "Stjepan Glavina " - ], - "categories": [ - "algorithms" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "getrandom", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wyhash", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "instant", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "js" - ], - "kind": "dev", - "name": "getrandom", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [ - "wasm-bindgen" - ], - "kind": "dev", - "name": "instant", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_arch = \"wasm32\")", - "uses_default_features": true - } - ], - "description": "A simple and fast random number generator", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "simple", - "fast", - "rand", - "random", - "wyrand" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/Cargo.toml", - "metadata": null, - "name": "fastrand", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/smol-rs/fastrand", - "rust_version": "1.34", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "fastrand", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "smoke", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/smoke.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "char", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/tests/char.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.8.0/benches/bench.rs", - "test": false - } - ], - "version": "1.8.0" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "redox_syscall", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Platform-agnostic accessors of timestamps in File metadata\n", - "documentation": "https://docs.rs/filetime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/alexcrichton/filetime", - "id": "filetime 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "timestamp", - "mtime" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.18/Cargo.toml", - "metadata": null, - "name": "filetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/filetime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "filetime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.18/src/lib.rs", - "test": true - } - ], - "version": "0.2.18" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "tempdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Support for matching file paths against Unix shell style patterns.\n", - "documentation": "https://docs.rs/glob/0.3.0", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/rust-lang/glob", - "id": "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/Cargo.toml", - "metadata": null, - "name": "glob", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/glob", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "glob", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "glob-std", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/tests/glob-std.rs", - "test": true - } - ], - "version": "0.3.0" - }, - { - "authors": [ - "Amanieu d'Antras " - ], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "ahash", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.7.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bumpalo", - "optional": true, - "registry": null, - "rename": null, - "req": "^3.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rayon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.25", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust port of Google's SwissTable hash map", - "documentation": null, - "edition": "2021", - "features": { - "ahash": [ - "dep:ahash" - ], - "ahash-compile-time-rng": [ - "ahash/compile-time-rng" - ], - "alloc": [ - "dep:alloc" - ], - "bumpalo": [ - "dep:bumpalo" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "ahash", - "inline-more" - ], - "inline-more": [], - "nightly": [], - "raw": [], - "rayon": [ - "dep:rayon" - ], - "rustc-dep-of-std": [ - "nightly", - "core", - "compiler_builtins", - "alloc", - "rustc-internal-api" - ], - "rustc-internal-api": [], - "serde": [ - "dep:serde" - ] - }, - "homepage": null, - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hash", - "no_std", - "hashmap", - "swisstable" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "nightly", - "rayon", - "serde", - "raw" - ] - } - } - }, - "name": "hashbrown", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/hashbrown", - "rust_version": "1.56.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hashbrown", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/serde.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "rayon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/rayon.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "hasher", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/hasher.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "set", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/tests/set.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "insert_unique_unchecked", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/insert_unique_unchecked.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.3/benches/bench.rs", - "test": false - } - ], - "version": "0.12.3" - }, - { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.51", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "hermit-abi is small interface to call functions from the unikernel RustyHermit.\nIt is used to build the target `x86_64-unknown-hermit`.\n", - "documentation": "https://hermitcore.github.io/rusty-hermit/hermit_abi", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "docs": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins/rustc-dep-of-std", - "libc/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-unknown-hermit", - "features": [ - "docs" - ] - } - } - }, - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/libhermit-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.1.19/src/lib.rs", - "test": true - } - ], - "version": "0.1.19" - }, - { - "authors": [ - "Stefan Lankes" - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Hermit system calls definitions.", - "documentation": null, - "edition": "2021", - "features": { - "alloc": [ - "dep:alloc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins/rustc-dep-of-std" - ] - }, - "homepage": null, - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unikernel", - "libos" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/Cargo.toml", - "metadata": null, - "name": "hermit-abi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/hermitcore/rusty-hermit", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "hermit-abi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/hermit-abi-0.3.1/src/lib.rs", - "test": true - } - ], - "version": "0.3.1" - }, - { - "authors": [ - "Paul Colomiets " - ], - "categories": [ - "date-and-time" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "chrono", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "time", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": " A parser and formatter for std::time::{Duration, SystemTime}\n", - "documentation": "https://docs.rs/humantime", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/tailhook/humantime", - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "human", - "human-friendly", - "parser", - "duration" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml", - "metadata": null, - "name": "humantime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/tailhook/humantime", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_parse.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "datetime_format", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/benches/datetime_format.rs", - "test": false - } - ], - "version": "2.1.0" - }, - { - "authors": [ - "jean-airoldie " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "humantime", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "version-sync", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Serde support for the `humantime` crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "humantime-serde 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "humantime", - "time", - "duration" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-serde-1.1.1/Cargo.toml", - "metadata": null, - "name": "humantime-serde", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/jean-airoldie/humantime-serde", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "humantime-serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-serde-1.1.1/src/lib.rs", - "test": true - } - ], - "version": "1.1.1" - }, - { - "authors": [], - "categories": [ - "data-structures", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "raw" - ], - "kind": null, - "name": "hashbrown", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.12", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rayon", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.4.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-rayon", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fnv", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "fxhash", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "itertools", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.10", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A hash table with consistent order and fast iteration.", - "documentation": "https://docs.rs/indexmap/", - "edition": "2021", - "features": { - "rayon": [ - "dep:rayon" - ], - "rustc-rayon": [ - "dep:rustc-rayon" - ], - "serde": [ - "dep:serde" - ], - "serde-1": [ - "serde" - ], - "std": [], - "test_debug": [], - "test_low_transition_point": [] - }, - "homepage": null, - "id": "indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "hashmap", - "no_std" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde-1", - "rayon" - ] - } - }, - "release": { - "no-dev-version": true, - "tag-name": "{{version}}" - } - }, - "name": "indexmap", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bluss/indexmap", - "rust_version": "1.56", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "indexmap", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "macros_full_path", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/macros_full_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "quick", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/quick.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "equivalent_trait", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/equivalent_trait.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "tests", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/tests/tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "faststring", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/faststring.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "bench" - ], - "name": "bench", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/benches/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.9.1/build.rs", - "test": false - } - ], - "version": "1.9.1" - }, - { - "authors": [ - "sebcrozet " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "wasm-bindgen-test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "stdweb", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": null, - "name": "web-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "asmjs-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "stdweb", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": null, - "name": "web-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-emscripten", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "js-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "stdweb", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wasm-bindgen", - "optional": true, - "registry": null, - "rename": "wasm-bindgen_rs", - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - }, - { - "features": [ - "Window", - "Performance", - "PerformanceTiming" - ], - "kind": null, - "name": "web-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "wasm32-unknown-unknown", - "uses_default_features": true - } - ], - "description": "A partial replacement for std::time::Instant that works on WASM too.", - "documentation": null, - "edition": "2018", - "features": { - "inaccurate": [], - "js-sys": [ - "dep:js-sys" - ], - "now": [], - "stdweb": [ - "dep:stdweb" - ], - "wasm-bindgen": [ - "js-sys", - "wasm-bindgen_rs", - "web-sys" - ], - "wasm-bindgen_rs": [ - "dep:wasm-bindgen_rs" - ], - "web-sys": [ - "dep:web-sys" - ] - }, - "homepage": null, - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "time", - "wasm" - ], - "license": "BSD-3-Clause", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml", - "metadata": null, - "name": "instant", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sebcrozet/instant", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "instant", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "wasm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/tests/wasm.rs", - "test": true - } - ], - "version": "0.1.12" - }, - { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "os", - "rust-patterns" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "fs-err", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "async-std", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.12.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "net", - "os-ext" - ], - "kind": null, - "name": "mio", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io_safety" - ], - "kind": null, - "name": "os_pipe", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "socket2", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "io-std", - "fs", - "net", - "process" - ], - "kind": null, - "name": "tokio", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.96", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_System_IO", - "Win32_System_Threading" - ], - "kind": null, - "name": "windows-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A low-level I/O ownership and borrowing library", - "documentation": null, - "edition": "2018", - "features": { - "async-std": [ - "dep:async-std" - ], - "close": [ - "libc", - "windows-sys" - ], - "default": [ - "close" - ], - "fs-err": [ - "dep:fs-err" - ], - "libc": [ - "dep:libc" - ], - "mio": [ - "dep:mio" - ], - "os_pipe": [ - "dep:os_pipe" - ], - "socket2": [ - "dep:socket2" - ], - "tokio": [ - "dep:tokio" - ], - "windows-sys": [ - "dep:windows-sys" - ] - }, - "homepage": null, - "id": "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "io" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/Cargo.toml", - "metadata": null, - "name": "io-lifetimes", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/io-lifetimes", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "io-lifetimes", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/io-lifetimes-1.0.5/build.rs", - "test": false - } - ], - "version": "1.0.5" - }, - { - "authors": [ - "softprops ", - "Dan Gohman " - ], - "categories": [ - "command-line-interface" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "io-lifetimes", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "atty", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.110", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [ - "termios" - ], - "kind": null, - "name": "rustix", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.36.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "hermit-abi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"hermit\")", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Test whether a given stream is a terminal", - "documentation": "http://docs.rs/is-terminal", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "is-terminal 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "terminal", - "tty", - "isatty" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.4/Cargo.toml", - "metadata": null, - "name": "is-terminal", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/is-terminal", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "is-terminal", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/is-terminal-0.4.4/src/lib.rs", - "test": true - } - ], - "version": "0.4.4" - }, - { - "authors": [ - "The Rust Project Developers" - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Raw FFI bindings to platform libraries like libc.\n", - "documentation": "https://docs.rs/libc/", - "edition": "2015", - "features": { - "align": [], - "const-extern-fn": [], - "default": [ - "std" - ], - "extra_traits": [], - "rustc-dep-of-std": [ - "align", - "rustc-std-workspace-core" - ], - "rustc-std-workspace-core": [ - "dep:rustc-std-workspace-core" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/rust-lang/libc", - "id": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "libc", - "ffi", - "bindings", - "operating", - "system" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "const-extern-fn", - "extra_traits" - ] - } - } - }, - "name": "libc", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rust-lang/libc", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "libc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "const_fn", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/tests/const_fn.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/build.rs", - "test": false - } - ], - "version": "0.2.139" - }, - { - "authors": [ - "Dan Gohman " - ], - "categories": [ - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.100", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "static_assertions", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Generated bindings for Linux's userspace API", - "documentation": "https://docs.rs/linux-raw-sys", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "general", - "errno" - ], - "errno": [], - "general": [], - "ioctl": [], - "netlink": [], - "no_std": [], - "rustc-dep-of-std": [ - "core", - "compiler_builtins", - "no_std" - ], - "std": [] - }, - "homepage": null, - "id": "linux-raw-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "linux", - "uapi", - "ffi" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.1.4/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "default", - "ioctl", - "netlink" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu" - ] - } - } - }, - "name": "linux-raw-sys", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/sunfishcode/linux-raw-sys", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "linux-raw-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/linux-raw-sys-0.1.4/src/lib.rs", - "test": true - } - ], - "version": "0.1.4" - }, - { - "authors": [ - "Andrew Gallant ", - "bluss" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.18", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "quickcheck", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "Safe interface to memchr.", - "documentation": "https://docs.rs/memchr/", - "edition": "2018", - "features": { - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std" - ], - "libc": [ - "dep:libc" - ], - "rustc-dep-of-std": [ - "core", - "compiler_builtins" - ], - "std": [], - "use_std": [ - "std" - ] - }, - "homepage": "https://github.com/BurntSushi/memchr", - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "memchr", - "char", - "scan", - "strchr", - "string" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/Cargo.toml", - "metadata": null, - "name": "memchr", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/memchr", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "memchr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.5.0/build.rs", - "test": false - } - ], - "version": "2.5.0" - }, - { - "authors": [ - "Gilad Naaman " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "offset_of functionality for Rust structs.", - "documentation": null, - "edition": "2015", - "features": { - "default": [], - "unstable_const": [] - }, - "homepage": null, - "id": "memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "mem", - "offset", - "offset_of", - "offsetof" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml", - "metadata": null, - "name": "memoffset", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Gilnaa/memoffset", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "memoffset", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs", - "test": false - } - ], - "version": "0.6.5" - }, - { - "authors": [], - "categories": [ - "parsing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "memchr", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "proptest", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A byte-oriented, zero-copy, parser combinators library (fork for proposals for v8)", - "documentation": null, - "edition": "2018", - "features": { - "alloc": [], - "default": [ - "std" - ], - "std": [ - "alloc", - "memchr/std" - ], - "unstable-doc": [ - "alloc", - "std" - ] - }, - "homepage": null, - "id": "nom8 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parser", - "parser-combinators", - "parsing", - "streaming", - "bit" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "features": [ - "unstable-doc" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/epage/nom8/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "nom8", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/epage/nom-experimental", - "rust_version": "1.51.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "nom8", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "custom_error", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/custom_error.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "json", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/json.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "json_iterator", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/json_iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "iterator", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/iterator.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "s_expression", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/s_expression.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "string", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/examples/string.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arithmetic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/arithmetic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "arithmetic_ast", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/arithmetic_ast.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "css", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/css.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "custom_errors", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/custom_errors.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "float", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/float.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ini", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/ini.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "ini_str", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/ini_str.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issues", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/issues.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "json", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/json.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "mp4", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/mp4.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "multiline", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/multiline.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "overflow", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/overflow.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "reborrow_fold", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/reborrow_fold.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "fnmut", - "required-features": [ - "alloc" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/fnmut.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "escaped", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/nom8-0.2.0/tests/escaped.rs", - "test": true - } - ], - "version": "0.2.0" - }, - { - "authors": [ - "Richard Dodd " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Takes an iterator over chars and returns a new iterator with all line endings (\\r, \\n, or \\r\\n) as \\n", - "documentation": "https://derekdreery.github.io/normalize-line-endings/normalize_line_endings/index.html", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "chars", - "line", - "ending", - "normalize" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/Cargo.toml", - "metadata": null, - "name": "normalize-line-endings", - "publish": null, - "readme": "./README.md", - "repository": "https://github.com/derekdreery/normalize-line-endings", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "normalize-line-endings", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/normalize-line-endings-0.3.0/src/lib.rs", - "test": true - } - ], - "version": "0.3.0" - }, - { - "authors": [ - "Sean McArthur " - ], - "categories": [ - "hardware-support" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "hermit-abi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.26", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - } - ], - "description": "Get the number of CPUs on a machine.", - "documentation": "https://docs.rs/num_cpus", - "edition": "2015", - "features": {}, - "homepage": null, - "id": "num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "cpu", - "cpus", - "cores" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/Cargo.toml", - "metadata": null, - "name": "num_cpus", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/seanmonstar/num_cpus", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "num_cpus", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "values", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/examples/values.rs", - "test": false - } - ], - "version": "1.13.1" - }, - { - "authors": [ - "Aleksey Kladov " - ], - "categories": [ - "rust-patterns", - "memory-management" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "atomic-polyfill", - "optional": true, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "parking_lot_core", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.9.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "crossbeam-utils", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Single assignment cells and lazy values.", - "documentation": "https://docs.rs/once_cell", - "edition": "2018", - "features": { - "alloc": [ - "race" - ], - "atomic-polyfill": [ - "dep:atomic-polyfill" - ], - "default": [ - "std" - ], - "parking_lot": [ - "parking_lot_core" - ], - "parking_lot_core": [ - "dep:parking_lot_core" - ], - "race": [], - "std": [ - "alloc" - ], - "unstable": [] - }, - "homepage": null, - "id": "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "lazy", - "static" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "once_cell", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/matklad/once_cell", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "once_cell", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench_acquire", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench_acquire.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "bench_vs_lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/bench_vs_lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "lazy_static", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/lazy_static.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "reentrant_init_deadlocks", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/reentrant_init_deadlocks.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "regex", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/regex.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "test_synchronization", - "required-features": [ - "std" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/examples/test_synchronization.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "it", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.13.1/tests/it.rs", - "test": true - } - ], - "version": "1.13.1" - }, - { - "authors": [ - "Jack O'Connor" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.62", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows))", - "uses_default_features": true - }, - { - "features": [ - "handleapi", - "namedpipeapi", - "processthreadsapi", - "winnt" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "a cross-platform library for opening OS pipes", - "documentation": "https://docs.rs/os_pipe", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "os_pipe 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "pipe", - "pipe2", - "createpipe", - "dup" - ], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/Cargo.toml", - "metadata": null, - "name": "os_pipe", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/oconnor663/os_pipe.rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "os_pipe", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "cat", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/cat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "swap", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/swap.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2018", - "kind": [ - "bin" - ], - "name": "cat_both", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-1.0.1/src/bin/cat_both.rs", - "test": true - } - ], - "version": "1.0.1" - }, - { - "authors": [ - "David Tolnay ", - "Alex Crichton " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "unicode-ident", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - } - ], - "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.", - "documentation": "https://docs.rs/proc-macro2", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "nightly": [], - "proc-macro": [], - "span-locations": [] - }, - "homepage": null, - "id": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "rustc-args": [ - "--cfg", - "procmacro2_semver_exempt" - ], - "rustdoc-args": [ - "--cfg", - "procmacro2_semver_exempt", - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "span-locations" - ] - } - }, - "name": "proc-macro2", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/proc-macro2", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "proc-macro2", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "comments", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/comments.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "marker", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/marker.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_fmt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/test_fmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "features", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/tests/features.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.43/build.rs", - "test": false - } - ], - "version": "1.0.43" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.40", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "rustversion", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "diff" - ], - "kind": "dev", - "name": "trybuild", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.52", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Quasi-quoting macro quote!(...)", - "documentation": "https://docs.rs/quote/", - "edition": "2018", - "features": { - "default": [ - "proc-macro" - ], - "proc-macro": [ - "proc-macro2/proc-macro" - ] - }, - "homepage": null, - "id": "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "quote", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/quote", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "quote", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/test.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compiletest", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/tests/compiletest.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.21/build.rs", - "test": false - } - ], - "version": "1.0.21" - }, - { - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "crossbeam-deque", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "either", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "rayon-core", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.9.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "docopt", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "lazy_static", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "autocfg", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Simple work-stealing parallelism for Rust", - "documentation": "https://docs.rs/rayon/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/Cargo.toml", - "metadata": null, - "name": "rayon", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rayon", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "cpu_monitor", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/examples/cpu_monitor.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "clones", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/clones.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "producer_split_at", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/producer_split_at.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "named-threads", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/named-threads.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "collect", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/collect.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "intersperse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/intersperse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "iter_panic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/iter_panic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "octillion", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/octillion.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "str", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/str.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issue671", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "sort-panic-safe", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/sort-panic-safe.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "debug", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/debug.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "cross-pool", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/cross-pool.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "chars", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/chars.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "issue671-unzip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/tests/issue671-unzip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.3/build.rs", - "test": false - } - ], - "version": "1.5.3" - }, - { - "authors": [ - "Niko Matsakis ", - "Josh Stone " - ], - "categories": [ - "concurrency" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "crossbeam-channel", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crossbeam-deque", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "crossbeam-utils", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "num_cpus", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rand_xorshift", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "scoped-tls", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "Core APIs for Rayon", - "documentation": "https://docs.rs/rayon/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "parallel", - "thread", - "concurrency", - "join", - "performance" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": "rayon-core", - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/Cargo.toml", - "metadata": null, - "name": "rayon-core", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/rayon-rs/rayon", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rayon-core", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "stack_overflow_crash", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/stack_overflow_crash.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "double_init_fail", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/double_init_fail.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "init_zero_threads", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/init_zero_threads.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "scope_join", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scope_join.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "simple_panic", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/simple_panic.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "scoped_threadpool", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/tests/scoped_threadpool.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.3/build.rs", - "test": false - } - ], - "version": "1.9.3" - }, - { - "authors": [ - "Jeremy Soller " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A Rust library to access raw Redox system calls", - "documentation": "https://docs.rs/redox_syscall", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/Cargo.toml", - "metadata": null, - "name": "redox_syscall", - "publish": null, - "readme": "README.md", - "repository": "https://gitlab.redox-os.org/redox-os/syscall", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syscall", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/redox_syscall-0.2.16/src/lib.rs", - "test": true - } - ], - "version": "0.2.16" - }, - { - "authors": [ - "Aaronepower " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "errhandlingapi", - "winerror", - "fileapi", - "winbase" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A safe, reliable implementation of remove_dir_all for Windows", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utility", - "filesystem", - "remove_dir", - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/Cargo.toml", - "metadata": null, - "name": "remove_dir_all", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/XAMPPRocky/remove_dir_all.git", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "remove_dir_all", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/src/lib.rs", - "test": true - } - ], - "version": "0.5.3" - }, - { - "authors": [ - "Dan Gohman ", - "Jakub Konka " - ], - "categories": [ - "os::unix-apis", - "date-and-time", - "filesystem", - "network-programming" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-alloc", - "optional": true, - "registry": null, - "rename": "alloc", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "bitflags", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "compiler_builtins", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rustc-std-workspace-core", - "optional": true, - "registry": null, - "rename": "core", - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": null, - "name": "io-lifetimes", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "itoa", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "close" - ], - "kind": "dev", - "name": "io-lifetimes", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "errno", - "optional": false, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "memoffset", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serial_test", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tempfile", - "optional": false, - "registry": null, - "rename": null, - "req": "^3.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "build", - "name": "cc", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "general", - "no_std" - ], - "kind": null, - "name": "linux-raw-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))", - "uses_default_features": true - }, - { - "features": [ - "extra_traits" - ], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "errno", - "optional": true, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "general", - "errno", - "ioctl", - "no_std" - ], - "kind": null, - "name": "linux-raw-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))", - "uses_default_features": false - }, - { - "features": [ - "extra_traits" - ], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.133", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "errno", - "optional": false, - "registry": null, - "rename": "libc_errno", - "req": "^0.2.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))", - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "once_cell", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.5.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(target_os = \"android\", target_os = \"linux\"))", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_NetworkManagement_IpHelper", - "Win32_System_Threading" - ], - "kind": null, - "name": "windows-sys", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ctor", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.21", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls", - "documentation": "https://docs.rs/rustix", - "edition": "2018", - "features": { - "all-apis": [ - "fs", - "io_uring", - "mm", - "net", - "param", - "process", - "procfs", - "rand", - "runtime", - "termios", - "thread", - "time" - ], - "all-impls": [ - "os_pipe", - "fs-err" - ], - "alloc": [ - "dep:alloc" - ], - "cc": [ - "dep:cc" - ], - "compiler_builtins": [ - "dep:compiler_builtins" - ], - "core": [ - "dep:core" - ], - "default": [ - "std", - "use-libc-auxv" - ], - "fs": [], - "fs-err": [ - "io-lifetimes/fs-err" - ], - "io-lifetimes": [ - "dep:io-lifetimes" - ], - "io_uring": [ - "fs", - "net" - ], - "itoa": [ - "dep:itoa" - ], - "libc": [ - "dep:libc" - ], - "libc_errno": [ - "dep:libc_errno" - ], - "mm": [], - "net": [], - "once_cell": [ - "dep:once_cell" - ], - "os_pipe": [ - "io-lifetimes/os_pipe" - ], - "param": [ - "fs" - ], - "process": [], - "procfs": [ - "once_cell", - "itoa", - "fs" - ], - "rand": [], - "runtime": [], - "rustc-dep-of-std": [ - "core", - "alloc", - "compiler_builtins", - "linux-raw-sys/rustc-dep-of-std", - "bitflags/rustc-dep-of-std" - ], - "std": [ - "io-lifetimes" - ], - "termios": [], - "thread": [], - "time": [], - "use-libc": [ - "libc_errno", - "libc" - ], - "use-libc-auxv": [ - "libc" - ] - }, - "homepage": null, - "id": "rustix 0.36.8 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "api", - "file", - "network", - "safe", - "syscall" - ], - "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "all-apis" - ], - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu", - "i686-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "rustix", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/bytecodealliance/rustix", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "rustix", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "mod", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/benches/mod.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/rustix-0.36.8/build.rs", - "test": false - } - ], - "version": "0.36.8" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-util", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A simple crate for determining whether two file paths point to the same file.\n", - "documentation": "https://docs.rs/same-file", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/same-file", - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "same", - "file", - "equal", - "inode" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml", - "metadata": null, - "name": "same-file", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/same-file", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "same-file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_same_file", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_same_file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "is_stderr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/examples/is_stderr.rs", - "test": false - } - ], - "version": "1.0.6" - }, - { - "authors": [ - "bluss" - ], - "categories": [ - "rust-patterns", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "A RAII scope guard that will run a given closure when it goes out of scope,\neven if the code between panics (assuming unwinding panic).\n\nDefines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as\nshorthands for guards with one of the implemented strategies.\n", - "documentation": "https://docs.rs/scopeguard/", - "edition": "2015", - "features": { - "default": [ - "use_std" - ], - "use_std": [] - }, - "homepage": null, - "id": "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "scope-guard", - "defer", - "panic", - "unwind" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/Cargo.toml", - "metadata": { - "release": { - "no-dev-version": true - } - }, - "name": "scopeguard", - "publish": null, - "readme": null, - "repository": "https://github.com/bluss/scopeguard", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "scopeguard", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "example" - ], - "name": "readme", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/examples/readme.rs", - "test": false - } - ], - "version": "1.1.0" - }, - { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "encoding", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde_derive", - "optional": true, - "registry": null, - "rename": null, - "req": "=1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_derive", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A generic serialization/deserialization framework", - "documentation": "https://docs.serde.rs/serde/", - "edition": "2015", - "features": { - "alloc": [], - "default": [ - "std" - ], - "derive": [ - "serde_derive" - ], - "rc": [], - "serde_derive": [ - "dep:serde_derive" - ], - "std": [], - "unstable": [] - }, - "homepage": "https://serde.rs", - "id": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "derive", - "rc" - ] - } - }, - "name": "serde", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "1.13", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "serde", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.145/build.rs", - "test": false - } - ], - "version": "1.0.145" - }, - { - "authors": [ - "Erick Tryzelaar ", - "David Tolnay " - ], - "categories": [ - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "syn", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.90", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]", - "documentation": "https://serde.rs/derive.html", - "edition": "2015", - "features": { - "default": [], - "deserialize_in_place": [] - }, - "homepage": "https://serde.rs", - "id": "serde_derive 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "serialization", - "no_std", - "derive" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "serde_derive", - "publish": null, - "readme": "crates-io.md", - "repository": "https://github.com/serde-rs/serde", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "proc-macro" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "proc-macro" - ], - "name": "serde_derive", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.145/build.rs", - "test": false - } - ], - "version": "1.0.145" - }, - { - "authors": [], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides\nimplementations of the standard Serialize/Deserialize traits for TOML data to\nfacilitate deserializing and serializing Rust structures.\n", - "documentation": "https://docs.rs/serde_spanned", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "serde", - "span" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "serde_spanned", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "serde_spanned", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_spanned-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - { - "authors": [ - "comex ", - "Fenhl " - ], - "categories": [ - "command-line-interface", - "parser-implementations" - ], - "default_run": null, - "dependencies": [], - "description": "Split a string into shell words, like Python's shlex.", - "documentation": null, - "edition": "2015", - "features": { - "default": [ - "std" - ], - "std": [] - }, - "homepage": null, - "id": "shlex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shlex-1.1.0/Cargo.toml", - "metadata": null, - "name": "shlex", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/comex/rust-shlex", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "shlex", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/shlex-1.1.0/src/lib.rs", - "test": true - } - ], - "version": "1.1.0" - }, - { - "authors": [ - "Armin Ronacher ", - "Pierre-Étienne Meunier ", - "Brandon Williams " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "bstr", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.14", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.130", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "unicode-segmentation", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.7.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "console", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.15.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.10.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.68", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A diff library for Rust", - "documentation": null, - "edition": "2018", - "features": { - "bstr": [ - "dep:bstr" - ], - "bytes": [ - "bstr", - "text" - ], - "default": [ - "text" - ], - "inline": [ - "text" - ], - "serde": [ - "dep:serde" - ], - "text": [], - "unicode": [ - "text", - "unicode-segmentation", - "bstr/unicode" - ], - "unicode-segmentation": [ - "dep:unicode-segmentation" - ] - }, - "homepage": null, - "id": "similar 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "diff", - "difference", - "patience", - "compare", - "changes" - ], - "license": "Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "similar", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/mitsuhiko/similar", - "rust_version": "1.41", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "similar", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "patience", - "required-features": [ - "text", - "inline" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/patience.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/terminal.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "terminal-inline", - "required-features": [ - "text", - "inline", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/terminal-inline.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "original-slices", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/original-slices.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "udiff", - "required-features": [ - "text", - "bytes" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/udiff.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "close-matches", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/close-matches.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "large", - "required-features": [ - "text" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/large.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "serde", - "required-features": [ - "text", - "serde" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/serde.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "example" - ], - "name": "nonstring", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/similar-2.2.0/examples/nonstring.rs", - "test": false - } - ], - "version": "2.2.0" - }, - { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "anstyle", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "backtrace", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "content_inspector", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "document-features", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.6", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "dunce", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "escargot", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "filetime", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "ignore", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libtest-mimic", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "normalize-line-endings", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "os_pipe", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.85", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "inline" - ], - "kind": null, - "name": "similar", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "snapbox-macros", - "optional": false, - "path": "$CARGO_MANIFEST_DIR-macros", - "registry": null, - "rename": null, - "req": "^0.3.4", - "source": null, - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "tempfile", - "optional": true, - "registry": null, - "rename": null, - "req": "^3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "wait-timeout", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "walkdir", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.3.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.2.137", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - }, - { - "features": [ - "Win32_Foundation" - ], - "kind": null, - "name": "windows-sys", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.45.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "cmd": [ - "dep:os_pipe", - "dep:wait-timeout", - "dep:libc", - "dep:windows-sys" - ], - "color": [ - "dep:anstream", - "snapbox-macros/color" - ], - "color-auto": [ - "color" - ], - "debug": [ - "snapbox-macros/debug", - "dep:backtrace" - ], - "default": [ - "color-auto", - "diff" - ], - "detect-encoding": [ - "dep:content_inspector" - ], - "diff": [ - "dep:similar" - ], - "document-features": [ - "dep:document-features" - ], - "examples": [ - "dep:escargot" - ], - "harness": [ - "dep:libtest-mimic", - "dep:ignore" - ], - "json": [ - "structured-data", - "dep:serde_json" - ], - "path": [ - "dep:tempfile", - "dep:walkdir", - "dep:dunce", - "detect-encoding", - "dep:filetime" - ], - "structured-data": [ - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "snapbox", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox", - "src_path": "$CARGO_MANIFEST_DIR/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "snap-fixture", - "src_path": "$CARGO_MANIFEST_DIR/src/bin/snap-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "snap-example-fixture", - "src_path": "$CARGO_MANIFEST_DIR/examples/snap-example-fixture.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "cmd", - "src_path": "$CARGO_MANIFEST_DIR/tests/cmd.rs", - "test": true - } - ], - "version": "0.4.11" - }, - { - "authors": [], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing toolbox", - "documentation": "http://docs.rs/snapbox/", - "edition": "2021", - "features": { - "color": [ - "dep:anstream" - ], - "debug": [], - "default": [] - }, - "homepage": "https://github.com/assert-rs/trycmd/tree/main/crates/snapbox", - "id": "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)", - "keywords": [ - "cli", - "test", - "assert", - "command" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$CARGO_MANIFEST_DIR-macros/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true - } - } - }, - "name": "snapbox-macros", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd/", - "rust_version": "1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "snapbox-macros", - "src_path": "$CARGO_MANIFEST_DIR-macros/src/lib.rs", - "test": true - } - ], - "version": "0.3.4" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "parser-implementations" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "proc-macro2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.39", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "quote", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": null, - "name": "unicode-ident", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "anyhow", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "automod", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "flate2", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "insta", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ref-cast", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "regex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "blocking" - ], - "kind": "dev", - "name": "reqwest", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.11", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "syn-test-suite", - "optional": false, - "registry": null, - "rename": null, - "req": "^0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "tar", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.16", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "termcolor", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "walkdir", - "optional": false, - "registry": null, - "rename": null, - "req": "^2.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Parser for Rust source code", - "documentation": "https://docs.rs/syn", - "edition": "2018", - "features": { - "clone-impls": [], - "default": [ - "derive", - "parsing", - "printing", - "clone-impls", - "proc-macro" - ], - "derive": [], - "extra-traits": [], - "fold": [], - "full": [], - "parsing": [], - "printing": [ - "quote" - ], - "proc-macro": [ - "proc-macro2/proc-macro", - "quote/proc-macro" - ], - "quote": [ - "dep:quote" - ], - "test": [ - "syn-test-suite/all-features" - ], - "visit": [], - "visit-mut": [] - }, - "homepage": null, - "id": "syn 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "macros", - "syn" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "doc_cfg" - ], - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - }, - "playground": { - "features": [ - "full", - "visit", - "visit-mut", - "fold", - "extra-traits" - ] - } - }, - "name": "syn", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/syn", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "syn", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_should_parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_should_parse.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_expr", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_expr.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_asyncness", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_asyncness.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_grouping", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_grouping.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_path", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_path.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_pat", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_pat.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_buffer", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_parse_buffer.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_round_trip", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_round_trip.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_visibility", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_visibility.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_iterators", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_iterators.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_meta", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_meta.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_item", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_item.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_shebang", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_shebang.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_stmt", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_stmt.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_derive_input", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_derive_input.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ident", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_ident.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_size", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_generics", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_generics.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_attribute", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_attribute.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_lit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_lit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "regression", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/regression.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_precedence", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_precedence.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "zzz_stable", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/zzz_stable.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_ty", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_ty.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_receiver", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_receiver.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_parse_stream", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_parse_stream.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "test_token_trees", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/tests/test_token_trees.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "rust", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/benches/rust.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "file", - "required-features": [ - "full", - "parsing" - ], - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/benches/file.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.99/build.rs", - "test": false - } - ], - "version": "1.0.99" - }, - { - "authors": [ - "Steven Allen ", - "The Rust Project Developers", - "Ashley Mannix ", - "Jason White " - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "cfg-if", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "fastrand", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "remove_dir_all", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.5", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.27", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(any(unix, target_os = \"wasi\"))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "redox_syscall", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(target_os = \"redox\")", - "uses_default_features": true - }, - { - "features": [ - "fileapi", - "handleapi", - "winbase" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A library for managing temporary files and directories.", - "documentation": "https://docs.rs/tempfile", - "edition": "2018", - "features": { - "nightly": [] - }, - "homepage": "http://stebalien.com/projects/tempfile-rs", - "id": "tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "tempfile", - "tmpfile", - "filesystem" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/Cargo.toml", - "metadata": null, - "name": "tempfile", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/Stebalien/tempfile", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "tempfile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "namedtempfile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/namedtempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempfile", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempfile.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "spooled", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/spooled.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "tempdir", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/tests/tempdir.rs", - "test": true - } - ], - "version": "3.3.0" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "A TOML-compatible datetime type", - "documentation": "https://docs.rs/toml_datetime", - "edition": "2021", - "features": { - "serde": [ - "dep:serde" - ] - }, - "homepage": "https://github.com/toml-rs/toml", - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "toml_datetime", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/toml-rs/toml", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_datetime", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_datetime-0.6.1/src/lib.rs", - "test": true - } - ], - "version": "0.6.1" - }, - { - "authors": [ - "Andronik Ordian ", - "Ed Page " - ], - "categories": [ - "encoding", - "parser-implementations", - "parsing", - "config" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "indexmap", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.9.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "max_inline" - ], - "kind": null, - "name": "kstring", - "optional": true, - "registry": null, - "rename": null, - "req": "^2.0.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "nom8", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0.145", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "serde_spanned", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "toml_datetime", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "libtest-mimic", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.6.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "serde_json", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.91", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "harness" - ], - "kind": "dev", - "name": "snapbox", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-data", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "toml-test-harness", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Yet another format-preserving TOML parser.", - "documentation": "https://docs.rs/toml_edit", - "edition": "2021", - "features": { - "default": [], - "perf": [ - "dep:kstring" - ], - "serde": [ - "dep:serde", - "toml_datetime/serde", - "dep:serde_spanned" - ], - "unbounded": [] - }, - "homepage": null, - "id": "toml_edit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "encoding", - "toml" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "features": [ - "serde" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD", - "search": "" - } - ], - "tag-name": "v{{version}}" - } - }, - "name": "toml_edit", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/ordian/toml_edit", - "rust_version": "1.60.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "toml_edit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "visit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/examples/visit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder_compliance", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/decoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder_compliance", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/encoder_compliance.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "invalid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/invalid.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "testsuite", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/testsuite/main.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "decoder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/decoder.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "encoder", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/toml_edit-0.19.1/tests/encoder.rs", - "test": true - } - ], - "version": "0.19.1" - }, - { - "authors": [ - "Ed Page " - ], - "categories": [ - "development-tools::testing" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "anstream", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "escargot", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.5.7", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "glob", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "humantime", - "optional": false, - "registry": null, - "rename": null, - "req": "^2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "humantime-serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "rayon", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.5.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "preserve_order" - ], - "kind": null, - "name": "schemars", - "optional": true, - "registry": null, - "rename": null, - "req": "^0.8.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "derive" - ], - "kind": null, - "name": "serde", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "serde_json", - "optional": true, - "registry": null, - "rename": null, - "req": "^1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "shlex", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.1.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "cmd" - ], - "kind": null, - "name": "snapbox", - "optional": false, - "path": "$CARGO_MANIFEST_DIR", - "registry": null, - "rename": null, - "req": "^0.4.11", - "source": null, - "target": null, - "uses_default_features": false - }, - { - "features": [ - "serde" - ], - "kind": null, - "name": "toml_edit", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.19", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Snapshot testing for a herd of CLI tests", - "documentation": "http://docs.rs/trycmd/", - "edition": "2021", - "features": { - "color": [ - "snapbox/color", - "dep:anstream" - ], - "color-auto": [ - "snapbox/color-auto" - ], - "debug": [ - "snapbox/debug" - ], - "default": [ - "color-auto", - "filesystem", - "diff" - ], - "diff": [ - "snapbox/diff" - ], - "escargot": [ - "dep:escargot" - ], - "examples": [ - "snapbox/examples" - ], - "filesystem": [ - "snapbox/path" - ], - "schema": [ - "dep:schemars", - "dep:serde_json" - ] - }, - "homepage": "https://github.com/assert-rs/trycmd", - "id": "trycmd 0.14.16 (path+file://$HOME/gh/assert-rs/trycmd)", - "keywords": [ - "cli", - "test", - "assert", - "command", - "duct" - ], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/gh/assert-rs/trycmd/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "cargo-args": [ - "-Zunstable-options", - "-Zrustdoc-scrape-examples" - ], - "rustdoc-args": [ - "--cfg", - "docsrs" - ] - } - }, - "release": { - "pre-release-replacements": [ - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{version}}", - "search": "Unreleased" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "...{{tag_name}}", - "search": "\\.\\.\\.HEAD" - }, - { - "file": "CHANGELOG.md", - "min": 1, - "replace": "{{date}}", - "search": "ReleaseDate" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n## [Unreleased] - ReleaseDate\n", - "search": "" - }, - { - "exactly": 1, - "file": "CHANGELOG.md", - "replace": "\n[Unreleased]: https://github.com/assert-rs/trycmd/compare/{{tag_name}}...HEAD", - "search": "" - } - ] - } - }, - "name": "trycmd", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/assert-rs/trycmd.git", - "rust_version": "1.64.0", - "source": null, - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2021", - "kind": [ - "lib" - ], - "name": "trycmd", - "src_path": "$HOME/gh/assert-rs/trycmd/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "bin-fixture", - "src_path": "$HOME/gh/assert-rs/trycmd/src/bin/bin-fixture.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2021", - "kind": [ - "bin" - ], - "name": "trycmd-schema", - "required-features": [ - "schema" - ], - "src_path": "$HOME/gh/assert-rs/trycmd/src/bin/trycmd-schema.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "example" - ], - "name": "example-fixture", - "src_path": "$HOME/gh/assert-rs/trycmd/examples/example-fixture.rs", - "test": false - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "schema", - "src_path": "$HOME/gh/assert-rs/trycmd/tests/schema.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "cli_tests", - "src_path": "$HOME/gh/assert-rs/trycmd/tests/cli_tests.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2021", - "kind": [ - "test" - ], - "name": "example_tests", - "src_path": "$HOME/gh/assert-rs/trycmd/tests/example_tests.rs", - "test": true - } - ], - "version": "0.14.16" - }, - { - "authors": [ - "David Tolnay " - ], - "categories": [ - "development-tools::procedural-macro-helpers", - "no-std" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": "dev", - "name": "criterion", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "fst", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "small_rng" - ], - "kind": "dev", - "name": "rand", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.8", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "roaring", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.9", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "ucd-trie", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": false - }, - { - "features": [], - "kind": "dev", - "name": "unicode-xid", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31", - "documentation": "https://docs.rs/unicode-ident", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "unicode" - ], - "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-unknown-linux-gnu" - ] - } - } - }, - "name": "unicode-ident", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/dtolnay/unicode-ident", - "rust_version": "1.31", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "unicode-ident", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "static_size", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/tests/static_size.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "compare", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/tests/compare.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "bench" - ], - "name": "xid", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-ident-1.0.3/benches/xid.rs", - "test": false - } - ], - "version": "1.0.3" - }, - { - "authors": [ - "Joe Wilm ", - "Christian Duerr " - ], - "categories": [ - "parsing", - "no-std" - ], - "default_run": null, - "dependencies": [], - "description": "Table-driven UTF-8 parser", - "documentation": "https://docs.rs/utf8parse/", - "edition": "2018", - "features": { - "default": [], - "nightly": [] - }, - "homepage": null, - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "utf8", - "parse", - "table" - ], - "license": "Apache-2.0 OR MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/Cargo.toml", - "metadata": null, - "name": "utf8parse", - "publish": null, - "readme": null, - "repository": "https://github.com/alacritty/vte", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "utf8parse", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "test" - ], - "name": "utf-8-demo", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.1/tests/utf-8-demo.rs", - "test": true - } - ], - "version": "0.2.1" - }, - { - "authors": [ - "Alex Crichton " - ], - "categories": [ - "os" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "libc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.2", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(unix)", - "uses_default_features": true - } - ], - "description": "A crate to wait on a child process with a timeout specified across Unix and\nWindows platforms.\n", - "documentation": "https://docs.rs/wait-timeout", - "edition": "2015", - "features": {}, - "homepage": "https://github.com/alexcrichton/wait-timeout", - "id": "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/Cargo.toml", - "metadata": null, - "name": "wait-timeout", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/alexcrichton/wait-timeout", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "wait-timeout", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "exit", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/exit.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "reader", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/reader.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": true, - "doctest": false, - "edition": "2015", - "kind": [ - "bin" - ], - "name": "sleep", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/src/bin/sleep.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "test" - ], - "name": "smoke", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/wait-timeout-0.2.0/tests/smoke.rs", - "test": true - } - ], - "version": "0.2.0" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "filesystem" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "same-file", - "optional": false, - "registry": null, - "rename": null, - "req": "^1.0.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [], - "kind": "dev", - "name": "doc-comment", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - }, - { - "features": [ - "std", - "winnt" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-util", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.1.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "Recursively walk a directory.", - "documentation": "https://docs.rs/walkdir/", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/walkdir", - "id": "walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "directory", - "recursive", - "walk", - "iterator" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/Cargo.toml", - "metadata": null, - "name": "walkdir", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/walkdir", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "walkdir", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/src/lib.rs", - "test": true - } - ], - "version": "2.3.2" - }, - { - "authors": [ - "Peter Atashian " - ], - "categories": [ - "external-ffi-bindings", - "no-std", - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "winapi-i686-pc-windows-gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "winapi-x86_64-pc-windows-gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.4", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - } - ], - "description": "Raw FFI bindings for all of Windows API.", - "documentation": "https://docs.rs/winapi/", - "edition": "2015", - "features": { - "accctrl": [], - "aclapi": [], - "activation": [], - "adhoc": [], - "appmgmt": [], - "audioclient": [], - "audiosessiontypes": [], - "avrt": [], - "basetsd": [], - "bcrypt": [], - "bits": [], - "bits10_1": [], - "bits1_5": [], - "bits2_0": [], - "bits2_5": [], - "bits3_0": [], - "bits4_0": [], - "bits5_0": [], - "bitscfg": [], - "bitsmsg": [], - "bluetoothapis": [], - "bluetoothleapis": [], - "bthdef": [], - "bthioctl": [], - "bthledef": [], - "bthsdpdef": [], - "bugcodes": [], - "cderr": [], - "cfg": [], - "cfgmgr32": [], - "cguid": [], - "combaseapi": [], - "coml2api": [], - "commapi": [], - "commctrl": [], - "commdlg": [], - "commoncontrols": [], - "consoleapi": [], - "corecrt": [], - "corsym": [], - "d2d1": [], - "d2d1_1": [], - "d2d1_2": [], - "d2d1_3": [], - "d2d1effectauthor": [], - "d2d1effects": [], - "d2d1effects_1": [], - "d2d1effects_2": [], - "d2d1svg": [], - "d2dbasetypes": [], - "d3d": [], - "d3d10": [], - "d3d10_1": [], - "d3d10_1shader": [], - "d3d10effect": [], - "d3d10misc": [], - "d3d10sdklayers": [], - "d3d10shader": [], - "d3d11": [], - "d3d11_1": [], - "d3d11_2": [], - "d3d11_3": [], - "d3d11_4": [], - "d3d11on12": [], - "d3d11sdklayers": [], - "d3d11shader": [], - "d3d11tokenizedprogramformat": [], - "d3d12": [], - "d3d12sdklayers": [], - "d3d12shader": [], - "d3d9": [], - "d3d9caps": [], - "d3d9types": [], - "d3dcommon": [], - "d3dcompiler": [], - "d3dcsx": [], - "d3dkmdt": [], - "d3dkmthk": [], - "d3dukmdt": [], - "d3dx10core": [], - "d3dx10math": [], - "d3dx10mesh": [], - "datetimeapi": [], - "davclnt": [], - "dbghelp": [], - "dbt": [], - "dcommon": [], - "dcomp": [], - "dcompanimation": [], - "dcomptypes": [], - "dde": [], - "ddraw": [], - "ddrawi": [], - "ddrawint": [], - "debug": [ - "impl-debug" - ], - "debugapi": [], - "devguid": [], - "devicetopology": [], - "devpkey": [], - "devpropdef": [], - "dinput": [], - "dinputd": [], - "dispex": [], - "dmksctl": [], - "dmusicc": [], - "docobj": [], - "documenttarget": [], - "dot1x": [], - "dpa_dsa": [], - "dpapi": [], - "dsgetdc": [], - "dsound": [], - "dsrole": [], - "dvp": [], - "dwmapi": [], - "dwrite": [], - "dwrite_1": [], - "dwrite_2": [], - "dwrite_3": [], - "dxdiag": [], - "dxfile": [], - "dxgi": [], - "dxgi1_2": [], - "dxgi1_3": [], - "dxgi1_4": [], - "dxgi1_5": [], - "dxgi1_6": [], - "dxgidebug": [], - "dxgiformat": [], - "dxgitype": [], - "dxva2api": [], - "dxvahd": [], - "eaptypes": [], - "enclaveapi": [], - "endpointvolume": [], - "errhandlingapi": [], - "everything": [], - "evntcons": [], - "evntprov": [], - "evntrace": [], - "excpt": [], - "exdisp": [], - "fibersapi": [], - "fileapi": [], - "functiondiscoverykeys_devpkey": [], - "gl-gl": [], - "guiddef": [], - "handleapi": [], - "heapapi": [], - "hidclass": [], - "hidpi": [], - "hidsdi": [], - "hidusage": [], - "highlevelmonitorconfigurationapi": [], - "hstring": [], - "http": [], - "ifdef": [], - "ifmib": [], - "imm": [], - "impl-debug": [], - "impl-default": [], - "in6addr": [], - "inaddr": [], - "inspectable": [], - "interlockedapi": [], - "intsafe": [], - "ioapiset": [], - "ipexport": [], - "iphlpapi": [], - "ipifcons": [], - "ipmib": [], - "iprtrmib": [], - "iptypes": [], - "jobapi": [], - "jobapi2": [], - "knownfolders": [], - "ks": [], - "ksmedia": [], - "ktmtypes": [], - "ktmw32": [], - "l2cmn": [], - "libloaderapi": [], - "limits": [], - "lmaccess": [], - "lmalert": [], - "lmapibuf": [], - "lmat": [], - "lmcons": [], - "lmdfs": [], - "lmerrlog": [], - "lmjoin": [], - "lmmsg": [], - "lmremutl": [], - "lmrepl": [], - "lmserver": [], - "lmshare": [], - "lmstats": [], - "lmsvc": [], - "lmuse": [], - "lmwksta": [], - "lowlevelmonitorconfigurationapi": [], - "lsalookup": [], - "memoryapi": [], - "minschannel": [], - "minwinbase": [], - "minwindef": [], - "mmdeviceapi": [], - "mmeapi": [], - "mmreg": [], - "mmsystem": [], - "mprapidef": [], - "msaatext": [], - "mscat": [], - "mschapp": [], - "mssip": [], - "mstcpip": [], - "mswsock": [], - "mswsockdef": [], - "namedpipeapi": [], - "namespaceapi": [], - "nb30": [], - "ncrypt": [], - "netioapi": [], - "nldef": [], - "ntddndis": [], - "ntddscsi": [], - "ntddser": [], - "ntdef": [], - "ntlsa": [], - "ntsecapi": [], - "ntstatus": [], - "oaidl": [], - "objbase": [], - "objidl": [], - "objidlbase": [], - "ocidl": [], - "ole2": [], - "oleauto": [], - "olectl": [], - "oleidl": [], - "opmapi": [], - "pdh": [], - "perflib": [], - "physicalmonitorenumerationapi": [], - "playsoundapi": [], - "portabledevice": [], - "portabledeviceapi": [], - "portabledevicetypes": [], - "powerbase": [], - "powersetting": [], - "powrprof": [], - "processenv": [], - "processsnapshot": [], - "processthreadsapi": [], - "processtopologyapi": [], - "profileapi": [], - "propidl": [], - "propkey": [], - "propkeydef": [], - "propsys": [], - "prsht": [], - "psapi": [], - "qos": [], - "realtimeapiset": [], - "reason": [], - "restartmanager": [], - "restrictederrorinfo": [], - "rmxfguid": [], - "roapi": [], - "robuffer": [], - "roerrorapi": [], - "rpc": [], - "rpcdce": [], - "rpcndr": [], - "rtinfo": [], - "sapi": [], - "sapi51": [], - "sapi53": [], - "sapiddk": [], - "sapiddk51": [], - "schannel": [], - "sddl": [], - "securityappcontainer": [], - "securitybaseapi": [], - "servprov": [], - "setupapi": [], - "shellapi": [], - "shellscalingapi": [], - "shlobj": [], - "shobjidl": [], - "shobjidl_core": [], - "shtypes": [], - "softpub": [], - "spapidef": [], - "spellcheck": [], - "sporder": [], - "sql": [], - "sqlext": [], - "sqltypes": [], - "sqlucode": [], - "sspi": [], - "std": [], - "stralign": [], - "stringapiset": [], - "strmif": [], - "subauth": [], - "synchapi": [], - "sysinfoapi": [], - "systemtopologyapi": [], - "taskschd": [], - "tcpestats": [], - "tcpmib": [], - "textstor": [], - "threadpoolapiset": [], - "threadpoollegacyapiset": [], - "timeapi": [], - "timezoneapi": [], - "tlhelp32": [], - "transportsettingcommon": [], - "tvout": [], - "udpmib": [], - "unknwnbase": [], - "urlhist": [], - "urlmon": [], - "usb": [], - "usbioctl": [], - "usbiodef": [], - "usbscan": [], - "usbspec": [], - "userenv": [], - "usp10": [], - "utilapiset": [], - "uxtheme": [], - "vadefs": [], - "vcruntime": [], - "vsbackup": [], - "vss": [], - "vsserror": [], - "vswriter": [], - "wbemads": [], - "wbemcli": [], - "wbemdisp": [], - "wbemprov": [], - "wbemtran": [], - "wct": [], - "werapi": [], - "winbase": [], - "wincodec": [], - "wincodecsdk": [], - "wincon": [], - "wincontypes": [], - "wincred": [], - "wincrypt": [], - "windef": [], - "windot11": [], - "windowsceip": [], - "windowsx": [], - "winefs": [], - "winerror": [], - "winevt": [], - "wingdi": [], - "winhttp": [], - "wininet": [], - "winineti": [], - "winioctl": [], - "winnetwk": [], - "winnls": [], - "winnt": [], - "winreg": [], - "winsafer": [], - "winscard": [], - "winsmcrd": [], - "winsock2": [], - "winspool": [], - "winstring": [], - "winsvc": [], - "wintrust": [], - "winusb": [], - "winusbio": [], - "winuser": [], - "winver": [], - "wlanapi": [], - "wlanihv": [], - "wlanihvtypes": [], - "wlantypes": [], - "wlclient": [], - "wmistr": [], - "wnnc": [], - "wow64apiset": [], - "wpdmtpextensions": [], - "ws2bth": [], - "ws2def": [], - "ws2ipdef": [], - "ws2spi": [], - "ws2tcpip": [], - "wtsapi32": [], - "wtypes": [], - "wtypesbase": [], - "xinput": [] - }, - "homepage": null, - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "ffi", - "win32", - "com", - "directx" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "features": [ - "everything", - "impl-debug", - "impl-default" - ], - "targets": [ - "aarch64-pc-windows-msvc", - "i686-pc-windows-msvc", - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.9/build.rs", - "test": false - } - ], - "version": "0.3.9" - }, - { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml", - "metadata": null, - "name": "winapi-i686-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-i686-pc-windows-gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-i686-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - { - "authors": [ - "Andrew Gallant " - ], - "categories": [ - "os::windows-apis", - "external-ffi-bindings" - ], - "default_run": null, - "dependencies": [ - { - "features": [ - "std", - "consoleapi", - "errhandlingapi", - "fileapi", - "minwindef", - "processenv", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "kind": null, - "name": "winapi", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.3", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(windows)", - "uses_default_features": true - } - ], - "description": "A dumping ground for high level safe wrappers over winapi.", - "documentation": "https://docs.rs/winapi-util", - "edition": "2018", - "features": {}, - "homepage": "https://github.com/BurntSushi/winapi-util", - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows", - "winapi", - "util", - "win" - ], - "license": "Unlicense/MIT", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "targets": [ - "x86_64-pc-windows-msvc" - ] - } - } - }, - "name": "winapi-util", - "publish": null, - "readme": "README.md", - "repository": "https://github.com/BurntSushi/winapi-util", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "winapi-util", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.5/src/lib.rs", - "test": true - } - ], - "version": "0.1.5" - }, - { - "authors": [ - "Peter Atashian " - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead.", - "documentation": null, - "edition": "2015", - "features": {}, - "homepage": null, - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [ - "windows" - ], - "license": "MIT/Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/Cargo.toml", - "metadata": null, - "name": "winapi-x86_64-pc-windows-gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/retep998/winapi-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2015", - "kind": [ - "lib" - ], - "name": "winapi-x86_64-pc-windows-gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2015", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/winapi-x86_64-pc-windows-gnu-0.4.0/build.rs", - "test": false - } - ], - "version": "0.4.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows_aarch64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_AI": [ - "Win32" - ], - "Win32_AI_MachineLearning": [ - "Win32_AI" - ], - "Win32_AI_MachineLearning_DirectML": [ - "Win32_AI_MachineLearning" - ], - "Win32_AI_MachineLearning_WinML": [ - "Win32_AI_MachineLearning" - ], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_CompositionSwapchain": [ - "Win32_Graphics" - ], - "Win32_Graphics_DXCore": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct2D_Common": [ - "Win32_Graphics_Direct2D" - ], - "Win32_Graphics_Direct3D": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D10": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D11on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D9on12": [ - "Win32_Graphics" - ], - "Win32_Graphics_Direct3D_Dxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_Direct3D_Fxc": [ - "Win32_Graphics_Direct3D" - ], - "Win32_Graphics_DirectComposition": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectDraw": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectManipulation": [ - "Win32_Graphics" - ], - "Win32_Graphics_DirectWrite": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Dxgi_Common": [ - "Win32_Graphics_Dxgi" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging": [ - "Win32_Graphics" - ], - "Win32_Graphics_Imaging_D2D": [ - "Win32_Graphics_Imaging" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectSound": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DirectShow": [ - "Win32_Media" - ], - "Win32_Media_DirectShow_Xml": [ - "Win32_Media_DirectShow" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaFoundation": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_PictureAcquisition": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_SideShow": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_TransactionServer": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WinRT": [ - "Win32_System" - ], - "Win32_System_WinRT_AllJoyn": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Composition": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_CoreInputView": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Direct3D11": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Display": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Graphics_Capture": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Direct2D": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Graphics_Imaging": [ - "Win32_System_WinRT_Graphics" - ], - "Win32_System_WinRT_Holographic": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Isolation": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_ML": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Media": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Pdf": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Printing": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Shell": [ - "Win32_System_WinRT" - ], - "Win32_System_WinRT_Storage": [ - "Win32_System_WinRT" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_UI_Xaml": [ - "Win32_UI" - ], - "Win32_UI_Xaml_Diagnostics": [ - "Win32_UI_Xaml" - ], - "default": [], - "deprecated": [] - }, - "homepage": null, - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "1.49", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.42.0/src/lib.rs", - "test": true - } - ], - "version": "0.42.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows-targets", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(not(windows_raw_dylib))", - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.45.0/src/lib.rs", - "test": true - } - ], - "version": "0.45.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [ - "os::windows-apis" - ], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows-targets", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": null, - "uses_default_features": true - } - ], - "description": "Rust for Windows", - "documentation": null, - "edition": "2018", - "features": { - "Wdk": [], - "Wdk_System": [ - "Wdk" - ], - "Wdk_System_OfflineRegistry": [ - "Wdk_System" - ], - "Win32": [], - "Win32_Data": [ - "Win32" - ], - "Win32_Data_HtmlHelp": [ - "Win32_Data" - ], - "Win32_Data_RightsManagement": [ - "Win32_Data" - ], - "Win32_Data_Xml": [ - "Win32_Data" - ], - "Win32_Data_Xml_MsXml": [ - "Win32_Data_Xml" - ], - "Win32_Data_Xml_XmlLite": [ - "Win32_Data_Xml" - ], - "Win32_Devices": [ - "Win32" - ], - "Win32_Devices_AllJoyn": [ - "Win32_Devices" - ], - "Win32_Devices_BiometricFramework": [ - "Win32_Devices" - ], - "Win32_Devices_Bluetooth": [ - "Win32_Devices" - ], - "Win32_Devices_Communication": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAccess": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceAndDriverInstallation": [ - "Win32_Devices" - ], - "Win32_Devices_DeviceQuery": [ - "Win32_Devices" - ], - "Win32_Devices_Display": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration": [ - "Win32_Devices" - ], - "Win32_Devices_Enumeration_Pnp": [ - "Win32_Devices_Enumeration" - ], - "Win32_Devices_Fax": [ - "Win32_Devices" - ], - "Win32_Devices_FunctionDiscovery": [ - "Win32_Devices" - ], - "Win32_Devices_Geolocation": [ - "Win32_Devices" - ], - "Win32_Devices_HumanInterfaceDevice": [ - "Win32_Devices" - ], - "Win32_Devices_ImageAcquisition": [ - "Win32_Devices" - ], - "Win32_Devices_PortableDevices": [ - "Win32_Devices" - ], - "Win32_Devices_Properties": [ - "Win32_Devices" - ], - "Win32_Devices_Pwm": [ - "Win32_Devices" - ], - "Win32_Devices_Sensors": [ - "Win32_Devices" - ], - "Win32_Devices_SerialCommunication": [ - "Win32_Devices" - ], - "Win32_Devices_Tapi": [ - "Win32_Devices" - ], - "Win32_Devices_Usb": [ - "Win32_Devices" - ], - "Win32_Devices_WebServicesOnDevices": [ - "Win32_Devices" - ], - "Win32_Foundation": [ - "Win32" - ], - "Win32_Gaming": [ - "Win32" - ], - "Win32_Globalization": [ - "Win32" - ], - "Win32_Graphics": [ - "Win32" - ], - "Win32_Graphics_Dwm": [ - "Win32_Graphics" - ], - "Win32_Graphics_Gdi": [ - "Win32_Graphics" - ], - "Win32_Graphics_Hlsl": [ - "Win32_Graphics" - ], - "Win32_Graphics_OpenGL": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing": [ - "Win32_Graphics" - ], - "Win32_Graphics_Printing_PrintTicket": [ - "Win32_Graphics_Printing" - ], - "Win32_Management": [ - "Win32" - ], - "Win32_Management_MobileDeviceManagementRegistration": [ - "Win32_Management" - ], - "Win32_Media": [ - "Win32" - ], - "Win32_Media_Audio": [ - "Win32_Media" - ], - "Win32_Media_Audio_Apo": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_DirectMusic": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_Endpoints": [ - "Win32_Media_Audio" - ], - "Win32_Media_Audio_XAudio2": [ - "Win32_Media_Audio" - ], - "Win32_Media_DeviceManager": [ - "Win32_Media" - ], - "Win32_Media_DxMediaObjects": [ - "Win32_Media" - ], - "Win32_Media_KernelStreaming": [ - "Win32_Media" - ], - "Win32_Media_LibrarySharingServices": [ - "Win32_Media" - ], - "Win32_Media_MediaPlayer": [ - "Win32_Media" - ], - "Win32_Media_Multimedia": [ - "Win32_Media" - ], - "Win32_Media_Speech": [ - "Win32_Media" - ], - "Win32_Media_Streaming": [ - "Win32_Media" - ], - "Win32_Media_WindowsMediaFormat": [ - "Win32_Media" - ], - "Win32_NetworkManagement": [ - "Win32" - ], - "Win32_NetworkManagement_Dhcp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Dns": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_InternetConnectionWizard": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_IpHelper": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_MobileBroadband": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Multicast": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Ndis": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetBios": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetManagement": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetShell": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkDiagnosticsFramework": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_NetworkPolicyServer": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_P2P": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_QoS": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Rras": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_Snmp": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WNet": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WebDav": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WiFi": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectNow": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsConnectionManager": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFilteringPlatform": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsFirewall": [ - "Win32_NetworkManagement" - ], - "Win32_NetworkManagement_WindowsNetworkVirtualization": [ - "Win32_NetworkManagement" - ], - "Win32_Networking": [ - "Win32" - ], - "Win32_Networking_ActiveDirectory": [ - "Win32_Networking" - ], - "Win32_Networking_BackgroundIntelligentTransferService": [ - "Win32_Networking" - ], - "Win32_Networking_Clustering": [ - "Win32_Networking" - ], - "Win32_Networking_HttpServer": [ - "Win32_Networking" - ], - "Win32_Networking_Ldap": [ - "Win32_Networking" - ], - "Win32_Networking_NetworkListManager": [ - "Win32_Networking" - ], - "Win32_Networking_RemoteDifferentialCompression": [ - "Win32_Networking" - ], - "Win32_Networking_WebSocket": [ - "Win32_Networking" - ], - "Win32_Networking_WinHttp": [ - "Win32_Networking" - ], - "Win32_Networking_WinInet": [ - "Win32_Networking" - ], - "Win32_Networking_WinSock": [ - "Win32_Networking" - ], - "Win32_Networking_WindowsWebServices": [ - "Win32_Networking" - ], - "Win32_Security": [ - "Win32" - ], - "Win32_Security_AppLocker": [ - "Win32_Security" - ], - "Win32_Security_Authentication": [ - "Win32_Security" - ], - "Win32_Security_Authentication_Identity": [ - "Win32_Security_Authentication" - ], - "Win32_Security_Authentication_Identity_Provider": [ - "Win32_Security_Authentication_Identity" - ], - "Win32_Security_Authorization": [ - "Win32_Security" - ], - "Win32_Security_Authorization_UI": [ - "Win32_Security_Authorization" - ], - "Win32_Security_ConfigurationSnapin": [ - "Win32_Security" - ], - "Win32_Security_Credentials": [ - "Win32_Security" - ], - "Win32_Security_Cryptography": [ - "Win32_Security" - ], - "Win32_Security_Cryptography_Catalog": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Certificates": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_Sip": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_Cryptography_UI": [ - "Win32_Security_Cryptography" - ], - "Win32_Security_DiagnosticDataQuery": [ - "Win32_Security" - ], - "Win32_Security_DirectoryServices": [ - "Win32_Security" - ], - "Win32_Security_EnterpriseData": [ - "Win32_Security" - ], - "Win32_Security_ExtensibleAuthenticationProtocol": [ - "Win32_Security" - ], - "Win32_Security_Isolation": [ - "Win32_Security" - ], - "Win32_Security_LicenseProtection": [ - "Win32_Security" - ], - "Win32_Security_NetworkAccessProtection": [ - "Win32_Security" - ], - "Win32_Security_Tpm": [ - "Win32_Security" - ], - "Win32_Security_WinTrust": [ - "Win32_Security" - ], - "Win32_Security_WinWlx": [ - "Win32_Security" - ], - "Win32_Storage": [ - "Win32" - ], - "Win32_Storage_Cabinets": [ - "Win32_Storage" - ], - "Win32_Storage_CloudFilters": [ - "Win32_Storage" - ], - "Win32_Storage_Compression": [ - "Win32_Storage" - ], - "Win32_Storage_DataDeduplication": [ - "Win32_Storage" - ], - "Win32_Storage_DistributedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_EnhancedStorage": [ - "Win32_Storage" - ], - "Win32_Storage_FileHistory": [ - "Win32_Storage" - ], - "Win32_Storage_FileServerResourceManager": [ - "Win32_Storage" - ], - "Win32_Storage_FileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_Imapi": [ - "Win32_Storage" - ], - "Win32_Storage_IndexServer": [ - "Win32_Storage" - ], - "Win32_Storage_InstallableFileSystems": [ - "Win32_Storage" - ], - "Win32_Storage_IscsiDisc": [ - "Win32_Storage" - ], - "Win32_Storage_Jet": [ - "Win32_Storage" - ], - "Win32_Storage_OfflineFiles": [ - "Win32_Storage" - ], - "Win32_Storage_OperationRecorder": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging": [ - "Win32_Storage" - ], - "Win32_Storage_Packaging_Appx": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_Packaging_Opc": [ - "Win32_Storage_Packaging" - ], - "Win32_Storage_ProjectedFileSystem": [ - "Win32_Storage" - ], - "Win32_Storage_StructuredStorage": [ - "Win32_Storage" - ], - "Win32_Storage_Vhd": [ - "Win32_Storage" - ], - "Win32_Storage_VirtualDiskService": [ - "Win32_Storage" - ], - "Win32_Storage_Vss": [ - "Win32_Storage" - ], - "Win32_Storage_Xps": [ - "Win32_Storage" - ], - "Win32_Storage_Xps_Printing": [ - "Win32_Storage_Xps" - ], - "Win32_System": [ - "Win32" - ], - "Win32_System_AddressBook": [ - "Win32_System" - ], - "Win32_System_Antimalware": [ - "Win32_System" - ], - "Win32_System_ApplicationInstallationAndServicing": [ - "Win32_System" - ], - "Win32_System_ApplicationVerifier": [ - "Win32_System" - ], - "Win32_System_AssessmentTool": [ - "Win32_System" - ], - "Win32_System_ClrHosting": [ - "Win32_System" - ], - "Win32_System_Com": [ - "Win32_System" - ], - "Win32_System_Com_CallObj": [ - "Win32_System_Com" - ], - "Win32_System_Com_ChannelCredentials": [ - "Win32_System_Com" - ], - "Win32_System_Com_Events": [ - "Win32_System_Com" - ], - "Win32_System_Com_Marshal": [ - "Win32_System_Com" - ], - "Win32_System_Com_StructuredStorage": [ - "Win32_System_Com" - ], - "Win32_System_Com_UI": [ - "Win32_System_Com" - ], - "Win32_System_Com_Urlmon": [ - "Win32_System_Com" - ], - "Win32_System_ComponentServices": [ - "Win32_System" - ], - "Win32_System_Console": [ - "Win32_System" - ], - "Win32_System_Contacts": [ - "Win32_System" - ], - "Win32_System_CorrelationVector": [ - "Win32_System" - ], - "Win32_System_DataExchange": [ - "Win32_System" - ], - "Win32_System_DeploymentServices": [ - "Win32_System" - ], - "Win32_System_DesktopSharing": [ - "Win32_System" - ], - "Win32_System_DeveloperLicensing": [ - "Win32_System" - ], - "Win32_System_Diagnostics": [ - "Win32_System" - ], - "Win32_System_Diagnostics_Ceip": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ClrProfiling": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_Debug_ActiveScript": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Debug_Extensions": [ - "Win32_System_Diagnostics_Debug" - ], - "Win32_System_Diagnostics_Etw": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ProcessSnapshotting": [ - "Win32_System_Diagnostics" - ], - "Win32_System_Diagnostics_ToolHelp": [ - "Win32_System_Diagnostics" - ], - "Win32_System_DistributedTransactionCoordinator": [ - "Win32_System" - ], - "Win32_System_Environment": [ - "Win32_System" - ], - "Win32_System_ErrorReporting": [ - "Win32_System" - ], - "Win32_System_EventCollector": [ - "Win32_System" - ], - "Win32_System_EventLog": [ - "Win32_System" - ], - "Win32_System_EventNotificationService": [ - "Win32_System" - ], - "Win32_System_GroupPolicy": [ - "Win32_System" - ], - "Win32_System_HostCompute": [ - "Win32_System" - ], - "Win32_System_HostComputeNetwork": [ - "Win32_System" - ], - "Win32_System_HostComputeSystem": [ - "Win32_System" - ], - "Win32_System_Hypervisor": [ - "Win32_System" - ], - "Win32_System_IO": [ - "Win32_System" - ], - "Win32_System_Iis": [ - "Win32_System" - ], - "Win32_System_Ioctl": [ - "Win32_System" - ], - "Win32_System_JobObjects": [ - "Win32_System" - ], - "Win32_System_Js": [ - "Win32_System" - ], - "Win32_System_Kernel": [ - "Win32_System" - ], - "Win32_System_LibraryLoader": [ - "Win32_System" - ], - "Win32_System_Mailslots": [ - "Win32_System" - ], - "Win32_System_Mapi": [ - "Win32_System" - ], - "Win32_System_Memory": [ - "Win32_System" - ], - "Win32_System_Memory_NonVolatile": [ - "Win32_System_Memory" - ], - "Win32_System_MessageQueuing": [ - "Win32_System" - ], - "Win32_System_MixedReality": [ - "Win32_System" - ], - "Win32_System_Mmc": [ - "Win32_System" - ], - "Win32_System_Ole": [ - "Win32_System" - ], - "Win32_System_ParentalControls": [ - "Win32_System" - ], - "Win32_System_PasswordManagement": [ - "Win32_System" - ], - "Win32_System_Performance": [ - "Win32_System" - ], - "Win32_System_Performance_HardwareCounterProfiling": [ - "Win32_System_Performance" - ], - "Win32_System_Pipes": [ - "Win32_System" - ], - "Win32_System_Power": [ - "Win32_System" - ], - "Win32_System_ProcessStatus": [ - "Win32_System" - ], - "Win32_System_RealTimeCommunications": [ - "Win32_System" - ], - "Win32_System_Recovery": [ - "Win32_System" - ], - "Win32_System_Registry": [ - "Win32_System" - ], - "Win32_System_RemoteAssistance": [ - "Win32_System" - ], - "Win32_System_RemoteDesktop": [ - "Win32_System" - ], - "Win32_System_RemoteManagement": [ - "Win32_System" - ], - "Win32_System_RestartManager": [ - "Win32_System" - ], - "Win32_System_Restore": [ - "Win32_System" - ], - "Win32_System_Rpc": [ - "Win32_System" - ], - "Win32_System_Search": [ - "Win32_System" - ], - "Win32_System_Search_Common": [ - "Win32_System_Search" - ], - "Win32_System_SecurityCenter": [ - "Win32_System" - ], - "Win32_System_ServerBackup": [ - "Win32_System" - ], - "Win32_System_Services": [ - "Win32_System" - ], - "Win32_System_SettingsManagementInfrastructure": [ - "Win32_System" - ], - "Win32_System_SetupAndMigration": [ - "Win32_System" - ], - "Win32_System_Shutdown": [ - "Win32_System" - ], - "Win32_System_StationsAndDesktops": [ - "Win32_System" - ], - "Win32_System_SubsystemForLinux": [ - "Win32_System" - ], - "Win32_System_SystemInformation": [ - "Win32_System" - ], - "Win32_System_SystemServices": [ - "Win32_System" - ], - "Win32_System_TaskScheduler": [ - "Win32_System" - ], - "Win32_System_Threading": [ - "Win32_System" - ], - "Win32_System_Time": [ - "Win32_System" - ], - "Win32_System_TpmBaseServices": [ - "Win32_System" - ], - "Win32_System_UpdateAgent": [ - "Win32_System" - ], - "Win32_System_UpdateAssessment": [ - "Win32_System" - ], - "Win32_System_UserAccessLogging": [ - "Win32_System" - ], - "Win32_System_VirtualDosMachines": [ - "Win32_System" - ], - "Win32_System_WindowsProgramming": [ - "Win32_System" - ], - "Win32_System_WindowsSync": [ - "Win32_System" - ], - "Win32_System_Wmi": [ - "Win32_System" - ], - "Win32_UI": [ - "Win32" - ], - "Win32_UI_Accessibility": [ - "Win32_UI" - ], - "Win32_UI_Animation": [ - "Win32_UI" - ], - "Win32_UI_ColorSystem": [ - "Win32_UI" - ], - "Win32_UI_Controls": [ - "Win32_UI" - ], - "Win32_UI_Controls_Dialogs": [ - "Win32_UI_Controls" - ], - "Win32_UI_Controls_RichEdit": [ - "Win32_UI_Controls" - ], - "Win32_UI_HiDpi": [ - "Win32_UI" - ], - "Win32_UI_Input": [ - "Win32_UI" - ], - "Win32_UI_Input_Ime": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Ink": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_KeyboardAndMouse": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Pointer": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Radial": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_Touch": [ - "Win32_UI_Input" - ], - "Win32_UI_Input_XboxController": [ - "Win32_UI_Input" - ], - "Win32_UI_InteractionContext": [ - "Win32_UI" - ], - "Win32_UI_LegacyWindowsEnvironmentFeatures": [ - "Win32_UI" - ], - "Win32_UI_Magnification": [ - "Win32_UI" - ], - "Win32_UI_Notifications": [ - "Win32_UI" - ], - "Win32_UI_Ribbon": [ - "Win32_UI" - ], - "Win32_UI_Shell": [ - "Win32_UI" - ], - "Win32_UI_Shell_Common": [ - "Win32_UI_Shell" - ], - "Win32_UI_Shell_PropertiesSystem": [ - "Win32_UI_Shell" - ], - "Win32_UI_TabletPC": [ - "Win32_UI" - ], - "Win32_UI_TextServices": [ - "Win32_UI" - ], - "Win32_UI_WindowsAndMessaging": [ - "Win32_UI" - ], - "Win32_UI_Wpf": [ - "Win32_UI" - ], - "Win32_Web": [ - "Win32" - ], - "Win32_Web_InternetExplorer": [ - "Win32_Web" - ], - "default": [] - }, - "homepage": null, - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "all-features": true, - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows-sys", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": "1.48", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-sys", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-sys-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows_aarch64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "aarch64-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "i686-uwp-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-gnullvm", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-pc-windows-msvc", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-gnu", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.42.1", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "x86_64-uwp-windows-msvc", - "uses_default_features": true - } - ], - "description": "Code gen support for the windows crate", - "documentation": "https://microsoft.github.io/windows-docs-rs/", - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.1/Cargo.toml", - "metadata": null, - "name": "windows-targets", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.42.1/src/lib.rs", - "test": true - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [ - { - "features": [], - "kind": null, - "name": "windows_aarch64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_aarch64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_i686_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnu", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_gnullvm", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))", - "uses_default_features": true - }, - { - "features": [], - "kind": null, - "name": "windows_x86_64_msvc", - "optional": false, - "registry": null, - "rename": null, - "req": "^0.48.0", - "source": "registry+https://github.com/rust-lang/crates.io-index", - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))", - "uses_default_features": true - } - ], - "description": "Import libs for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/Cargo.toml", - "metadata": null, - "name": "windows-targets", - "publish": null, - "readme": "readme.md", - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows-targets", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows-targets-0.48.0/src/lib.rs", - "test": true - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_aarch64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_aarch64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_aarch64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_i686_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_i686_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_i686_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnu", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnu", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnu-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_gnullvm", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_gnullvm", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_gnullvm-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Code gen support for the windows crate", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.42.1/build.rs", - "test": false - } - ], - "version": "0.42.1" - }, - { - "authors": [ - "Microsoft" - ], - "categories": [], - "default_run": null, - "dependencies": [], - "description": "Import lib for Windows", - "documentation": null, - "edition": "2018", - "features": {}, - "homepage": null, - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keywords": [], - "license": "MIT OR Apache-2.0", - "license_file": null, - "links": null, - "manifest_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/Cargo.toml", - "metadata": { - "docs": { - "rs": { - "default-target": "x86_64-pc-windows-msvc", - "targets": [] - } - } - }, - "name": "windows_x86_64_msvc", - "publish": null, - "readme": null, - "repository": "https://github.com/microsoft/windows-rs", - "rust_version": null, - "source": "registry+https://github.com/rust-lang/crates.io-index", - "targets": [ - { - "crate_types": [ - "lib" - ], - "doc": true, - "doctest": true, - "edition": "2018", - "kind": [ - "lib" - ], - "name": "windows_x86_64_msvc", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/src/lib.rs", - "test": true - }, - { - "crate_types": [ - "bin" - ], - "doc": false, - "doctest": false, - "edition": "2018", - "kind": [ - "custom-build" - ], - "name": "build-script-build", - "src_path": "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/windows_x86_64_msvc-0.48.0/build.rs", - "test": false - } - ], - "version": "0.48.0" - } - ], - "resolve": { - "nodes": [ - { - "dependencies": [ - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle-wincon 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "is-terminal 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle_parse", - "pkg": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle_query", - "pkg": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "anstyle_wincon", - "pkg": "anstyle-wincon 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "colorchoice", - "pkg": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "is_terminal", - "pkg": "is-terminal 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "utf8parse", - "pkg": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "auto", - "default", - "wincon" - ], - "id": "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "utf8parse", - "pkg": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "utf8" - ], - "id": "anstyle-parse 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "anstyle-query 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "anstyle-wincon 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "colorchoice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_utils", - "pkg": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "crossbeam-utils", - "default", - "std" - ], - "id": "crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-epoch 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_epoch", - "pkg": "crossbeam-epoch 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_utils", - "pkg": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "crossbeam-epoch", - "crossbeam-utils", - "default", - "std" - ], - "id": "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "autocfg", - "pkg": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_utils", - "pkg": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memoffset", - "pkg": "memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "once_cell", - "pkg": "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "scopeguard", - "pkg": "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "once_cell", - "std" - ], - "id": "crossbeam-epoch 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "once_cell", - "pkg": "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "once_cell", - "std" - ], - "id": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "dunce 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"dragonfly\")" - } - ], - "name": "errno_dragonfly", - "pkg": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - }, - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - }, - { - "kind": null, - "target": "cfg(target_os = \"wasi\")" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "cc", - "pkg": "cc 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "errno-dragonfly 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_arch = \"wasm32\")" - } - ], - "name": "instant", - "pkg": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ], - "name": "syscall", - "pkg": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "filetime 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "raw" - ], - "id": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default" - ], - "id": "hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "humantime", - "pkg": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "humantime-serde 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "autocfg", - "pkg": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "hashbrown", - "pkg": "hashbrown 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "close", - "default", - "libc", - "windows-sys" - ], - "id": "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rustix 0.36.8 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"hermit\")" - } - ], - "name": "hermit_abi", - "pkg": "hermit-abi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "io_lifetimes", - "pkg": "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))" - } - ], - "name": "rustix", - "pkg": "rustix 0.36.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "is-terminal 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "extra_traits", - "std" - ], - "id": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "errno", - "general", - "ioctl", - "no_std" - ], - "id": "linux-raw-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "autocfg", - "pkg": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default" - ], - "id": "memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "memchr", - "pkg": "memchr 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "alloc", - "default", - "std" - ], - "id": "nom8 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))" - } - ], - "name": "hermit_abi", - "pkg": "hermit-abi 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "alloc", - "default", - "race", - "std" - ], - "id": "once_cell 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows))" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "os_pipe 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_ident", - "pkg": "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "proc-macro" - ], - "id": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "proc-macro" - ], - "id": "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": "build", - "target": null - } - ], - "name": "autocfg", - "pkg": "autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_deque", - "pkg": "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "either", - "pkg": "either 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rayon_core", - "pkg": "rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_channel", - "pkg": "crossbeam-channel 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_deque", - "pkg": "crossbeam-deque 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "crossbeam_utils", - "pkg": "crossbeam-utils 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "num_cpus", - "pkg": "num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "rayon-core 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "linux-raw-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "bitflags", - "pkg": "bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))" - } - ], - "name": "libc_errno", - "pkg": "errno 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "io_lifetimes", - "pkg": "io-lifetimes 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))" - }, - { - "kind": null, - "target": "cfg(any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))))" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))" - }, - { - "kind": null, - "target": "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\"))))))))" - } - ], - "name": "linux_raw_sys", - "pkg": "linux-raw-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "io-lifetimes", - "libc", - "std", - "termios", - "use-libc-auxv" - ], - "id": "rustix 0.36.8 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi_util", - "pkg": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde_derive 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_derive", - "pkg": "serde_derive 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "derive", - "serde_derive", - "std" - ], - "id": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "syn", - "pkg": "syn 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default" - ], - "id": "serde_derive 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "serde" - ], - "id": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "std" - ], - "id": "shlex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default", - "inline", - "text" - ], - "id": "similar 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "dunce 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "filetime 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "os_pipe 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "similar 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)", - "tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstream", - "pkg": "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstyle", - "pkg": "anstyle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "content_inspector", - "pkg": "content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "dunce", - "pkg": "dunce 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "filetime", - "pkg": "filetime 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "normalize_line_endings", - "pkg": "normalize-line-endings 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "os_pipe", - "pkg": "os_pipe 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "similar", - "pkg": "similar 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "snapbox_macros", - "pkg": "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "tempfile", - "pkg": "tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "wait_timeout", - "pkg": "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "walkdir", - "pkg": "walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "windows_sys", - "pkg": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "cmd", - "color", - "color-auto", - "default", - "detect-encoding", - "diff", - "path" - ], - "id": "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)" - }, - { - "dependencies": [ - "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "anstream", - "pkg": "anstream 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "color", - "default" - ], - "id": "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)" - }, - { - "dependencies": [ - "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "proc_macro2", - "pkg": "proc-macro2 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "quote", - "pkg": "quote 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "unicode_ident", - "pkg": "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "clone-impls", - "default", - "derive", - "parsing", - "printing", - "proc-macro", - "quote" - ], - "id": "syn 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "cfg_if", - "pkg": "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "fastrand", - "pkg": "fastrand 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(any(unix, target_os = \"wasi\"))" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(target_os = \"redox\")" - } - ], - "name": "syscall", - "pkg": "redox_syscall 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "remove_dir_all", - "pkg": "remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "serde" - ], - "id": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "nom8 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "indexmap", - "pkg": "indexmap 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "nom8", - "pkg": "nom8 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde_spanned", - "pkg": "serde_spanned 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml_datetime", - "pkg": "toml_datetime 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "default", - "serde" - ], - "id": "toml_edit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime-serde 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)", - "shlex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)", - "toml_edit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "glob", - "pkg": "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "humantime", - "pkg": "humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "humantime_serde", - "pkg": "humantime-serde 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "rayon", - "pkg": "rayon 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "serde", - "pkg": "serde 1.0.145 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "shlex", - "pkg": "shlex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "snapbox", - "pkg": "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "toml_edit", - "pkg": "toml_edit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "color-auto", - "default", - "diff", - "filesystem" - ], - "id": "trycmd 0.14.16 (path+file://$HOME/gh/assert-rs/trycmd)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "unicode-ident 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [ - "default" - ], - "id": "utf8parse 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(unix)" - } - ], - "name": "libc", - "pkg": "libc 0.2.139 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "same_file", - "pkg": "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi_util", - "pkg": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - } - ], - "name": "winapi_i686_pc_windows_gnu", - "pkg": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - } - ], - "name": "winapi_x86_64_pc_windows_gnu", - "pkg": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "minwindef", - "namedpipeapi", - "ntdef", - "processenv", - "processthreadsapi", - "std", - "winbase", - "wincon", - "winerror", - "winnt" - ], - "id": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(windows)" - } - ], - "name": "winapi", - "pkg": "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ], - "name": "windows_aarch64_gnullvm", - "pkg": "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-msvc" - }, - { - "kind": null, - "target": "aarch64-uwp-windows-msvc" - } - ], - "name": "windows_aarch64_msvc", - "pkg": "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - }, - { - "kind": null, - "target": "i686-uwp-windows-gnu" - } - ], - "name": "windows_i686_gnu", - "pkg": "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-msvc" - }, - { - "kind": null, - "target": "i686-uwp-windows-msvc" - } - ], - "name": "windows_i686_msvc", - "pkg": "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-gnu" - } - ], - "name": "windows_x86_64_gnu", - "pkg": "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ], - "name": "windows_x86_64_gnullvm", - "pkg": "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-msvc" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-msvc" - } - ], - "name": "windows_x86_64_msvc", - "pkg": "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "default" - ], - "id": "windows-sys 0.42.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-targets 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(not(windows_raw_dylib))" - } - ], - "name": "windows_targets", - "pkg": "windows-targets 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_NetworkManagement", - "Win32_NetworkManagement_IpHelper", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "Win32_System_IO", - "Win32_System_Threading", - "default" - ], - "id": "windows-sys 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": null - } - ], - "name": "windows_targets", - "pkg": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [ - "Win32", - "Win32_Foundation", - "Win32_System", - "Win32_System_Console", - "default" - ], - "id": "windows-sys 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-gnullvm" - } - ], - "name": "windows_aarch64_gnullvm", - "pkg": "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "aarch64-pc-windows-msvc" - }, - { - "kind": null, - "target": "aarch64-uwp-windows-msvc" - } - ], - "name": "windows_aarch64_msvc", - "pkg": "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-gnu" - }, - { - "kind": null, - "target": "i686-uwp-windows-gnu" - } - ], - "name": "windows_i686_gnu", - "pkg": "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "i686-pc-windows-msvc" - }, - { - "kind": null, - "target": "i686-uwp-windows-msvc" - } - ], - "name": "windows_i686_msvc", - "pkg": "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnu" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-gnu" - } - ], - "name": "windows_x86_64_gnu", - "pkg": "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-gnullvm" - } - ], - "name": "windows_x86_64_gnullvm", - "pkg": "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "x86_64-pc-windows-msvc" - }, - { - "kind": null, - "target": "x86_64-uwp-windows-msvc" - } - ], - "name": "windows_x86_64_msvc", - "pkg": "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "windows-targets 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [ - "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", - "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - ], - "deps": [ - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))" - } - ], - "name": "windows_aarch64_gnullvm", - "pkg": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ], - "name": "windows_aarch64_msvc", - "pkg": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))" - } - ], - "name": "windows_i686_gnu", - "pkg": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ], - "name": "windows_i686_msvc", - "pkg": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))" - } - ], - "name": "windows_x86_64_gnu", - "pkg": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", target_abi = \"llvm\", not(windows_raw_dylib)))" - } - ], - "name": "windows_x86_64_gnullvm", - "pkg": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dep_kinds": [ - { - "kind": null, - "target": "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))" - } - ], - "name": "windows_x86_64_msvc", - "pkg": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "features": [], - "id": "windows-targets 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_aarch64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_i686_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnu 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnu 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnullvm 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_gnullvm 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_msvc 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" - }, - { - "dependencies": [], - "deps": [], - "features": [], - "id": "windows_x86_64_msvc 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)" - } - ], - "root": "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)" - }, - "target_directory": "$HOME/gh/assert-rs/trycmd/target", - "version": 1, - "workspace_members": [ - "snapbox 0.4.11 (path+file://$CARGO_MANIFEST_DIR)", - "snapbox-macros 0.3.4 (path+file://$CARGO_MANIFEST_DIR-macros)", - "trycmd 0.14.16 (path+file://$HOME/gh/assert-rs/trycmd)" - ], - "workspace_root": "$HOME/gh/assert-rs/trycmd" -} diff --git a/src/common.rs b/src/common.rs index 39a4319..34f6941 100644 --- a/src/common.rs +++ b/src/common.rs @@ -275,32 +275,6 @@ mod tests { } } - // `cargo` has `snapbox` as a dev dependency. `snapbox` has `snapbox-macros` as a normal - // dependency. - - #[test] - fn cargo() { - let deps = sourced_dependencies_from_file("deps_tests/cargo_0.70.1.deps.json"); - - assert!(deps.iter().any(|dep| dep.package.name == "snapbox")); - assert!(deps.iter().any(|dep| dep.package.name == "snapbox-macros")); - } - - #[test] - fn cargo_no_dev() { - let deps = sourced_dependencies_from_file("deps_tests/cargo_0.70.1.deps_no_dev.json"); - - assert!(deps.iter().all(|dep| dep.package.name != "snapbox")); - assert!(deps.iter().all(|dep| dep.package.name != "snapbox-macros")); - } - - #[test] - fn snapbox() { - let deps = sourced_dependencies_from_file("deps_tests/snapbox_0.4.11.deps.json"); - - assert!(deps.iter().any(|dep| dep.package.name == "snapbox-macros")); - } - #[test] fn optional_dependency_excluded_when_not_activated() { let metadata = MetadataCommand::new() From f9b3f8f222738fb5a244c4a6bb3ddfb37dc2c64c Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Thu, 22 Jan 2026 13:50:34 +0000 Subject: [PATCH 3/4] Drop obsolete exclude/ directive in Cargo.toml --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4b01b3c..f96c89f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,6 @@ authors = ["Andreas Molzer ", "Sergey \"Shnatsel\" Davido edition = "2018" license = "Apache-2.0 OR MIT OR Zlib" categories = ["development-tools::cargo-plugins", "command-line-utilities"] -exclude = ["deps_tests/"] [dependencies] cargo_metadata = "0.23.0" From 76948daa2db8ea1eb6673148f2200866001df04d Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Thu, 22 Jan 2026 13:54:43 +0000 Subject: [PATCH 4/4] Drop more obsolete test support code --- src/common.rs | 66 ++------------------------------------------------- 1 file changed, 2 insertions(+), 64 deletions(-) diff --git a/src/common.rs b/src/common.rs index 34f6941..b16c4a8 100644 --- a/src/common.rs +++ b/src/common.rs @@ -224,57 +224,8 @@ pub fn comma_separated_list(list: &[String]) -> String { #[cfg(test)] mod tests { - use super::{sourced_dependencies_from_metadata, SourcedPackage}; - use cargo_metadata::{Metadata, MetadataCommand}; - use std::{ - cmp::Ordering, - env::var, - fs::{read_dir, read_to_string, write}, - path::Path, - }; - - #[test] - fn deps() { - for entry in read_dir("deps_tests").unwrap() { - let entry = entry.unwrap(); - let path = entry.path(); - - let Some(prefix) = path - .to_string_lossy() - .strip_suffix(".metadata.json") - .map(ToOwned::to_owned) - else { - continue; - }; - - let contents = read_to_string(&path).unwrap(); - - // Help ensure private information is not leaked. - assert!(var("HOME").map_or(true, |home| !contents.contains(&home))); - - let metadata = serde_json::from_str::(&contents).unwrap(); - - for no_dev in [false, true] { - let path = prefix.clone() + ".deps" + if no_dev { "_no_dev" } else { "" } + ".json"; - - let mut deps_from_metadata = - sourced_dependencies_from_metadata(metadata.clone(), no_dev).unwrap(); - deps_from_metadata.sort_by(cmp_dep); - - if enabled("BLESS") { - let contents = serde_json::to_string_pretty(&deps_from_metadata).unwrap(); - write(path, &contents).unwrap(); - continue; - } - - let mut deps_from_file = sourced_dependencies_from_file(&path); - deps_from_file.sort_by(cmp_dep); - - assert_eq!(deps_from_file, deps_from_metadata); - } - } - } - + use super::sourced_dependencies_from_metadata; + use cargo_metadata::MetadataCommand; #[test] fn optional_dependency_excluded_when_not_activated() { let metadata = MetadataCommand::new() @@ -290,17 +241,4 @@ mod tests { .iter() .any(|dep| dep.package.name == "libz-rs-sys")); } - - fn sourced_dependencies_from_file(path: impl AsRef) -> Vec { - let contents = read_to_string(path).unwrap(); - serde_json::from_str::>(&contents).unwrap() - } - - fn cmp_dep(left: &SourcedPackage, right: &SourcedPackage) -> Ordering { - left.package.id.cmp(&right.package.id) - } - - fn enabled(key: &str) -> bool { - var(key).is_ok_and(|value| value != "0") - } }